Skip to content

Commit

Permalink
Fixed non global change of baud rate
Browse files Browse the repository at this point in the history
  • Loading branch information
ajfisher committed Jul 18, 2016
1 parent 479637e commit 207b016
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Expand Up @@ -28,7 +28,7 @@ module.exports = function(grunt) {
}],
options: {
replacements: [{
pattern: /57600/,
pattern: /57600/g,
replacement: '115200',
}],
},
Expand Down
2 changes: 1 addition & 1 deletion firmware/build/bluetooth/mbotFirmata/mbotFirmata.ino
Expand Up @@ -822,7 +822,7 @@ void setup()
// Firmata.begin(Serial1);
// However do not do this if you are using SERIAL_MESSAGE

Firmata.begin(57600);
Firmata.begin(115200);
while (!Serial) {
; // wait for serial port to connect. Needed for ATmega32u4-based boards and Arduino 101
}
Expand Down

0 comments on commit 207b016

Please sign in to comment.