anilgkts / arduino

Automatically exported from code.google.com/p/arduino
Other
0 stars 0 forks source link

[1.0.1]Impossible chage serial baud rate #964

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.open SerialMonitor
2.choose a baudrate from the combobox

What is the expected output? What do you see instead?
it should change the baudare. instead it print an error baout substring-

What version of the Arduino software are you using? On what operating
system?  Which Arduino board are you using?

Arruino 1.0.1

Please provide any additional information below.

the solution is to change     
for (int i = 0; i < serialRateStrings.length; i++)
      serialRates.addItem(serialRateStrings[i] + _(" baud"));
into
for (int i = 0; i < serialRateStrings.length; i++)
      serialRates.addItem(serialRateStrings[i] + " baud");

Original issue reported on code.google.com by mombelli...@gmail.com on 24 Jun 2012 at 3:55

GoogleCodeExporter commented 9 years ago
https://github.com/arduino/Arduino/commit/1daeba6fd62fac4a1a36329e41933f0b85785b
79

I took a slightly different approach, which should still allow the word "baud" 
to be translated while preventing errors by always include a 
(non-internationalized) space.

Original comment by dmel...@gmail.com on 24 Jun 2012 at 5:48

GoogleCodeExporter commented 9 years ago
thanks for the fast-fix

Original comment by mombelli...@gmail.com on 24 Jun 2012 at 10:11

GoogleCodeExporter commented 9 years ago
My friend started showing me things on the arduino. I find it great to see all 
of the capabilities that this device can do. 
http://www.gemsandgoldofnaples.com/services/   

Original comment by cmcpoy...@gmail.com on 30 Jan 2014 at 12:53