2016-06-16 01:57:25 +00:00
{
2016-09-30 22:20:37 +00:00
"name" : "platform" ,
2016-06-16 01:57:25 +00:00
"config" : {
"stdio-convert-newlines" : {
2017-11-23 15:44:33 +00:00
"help" : "Enable conversion to standard newlines on stdin/stdout/stderr" ,
"value" : false
} ,
"stdio-convert-tty-newlines" : {
"help" : "Enable conversion to standard newlines on any tty FILE stream" ,
"value" : false
} ,
"stdio-buffered-serial" : {
"help" : "Use UARTSerial driver to obtain buffered serial I/O on stdin/stdout/stderr. If false, unbuffered serial_getc and serial_putc are used directly." ,
2016-06-16 10:53:11 +00:00
"value" : false
2016-06-22 05:38:41 +00:00
} ,
"stdio-baud-rate" : {
"help" : "Baud rate for stdio" ,
"value" : 9600
2016-09-19 09:33:48 +00:00
} ,
"stdio-flush-at-exit" : {
"help" : "Enable or disable the flush of standard I/O's at exit." ,
"value" : true
2016-08-11 10:01:33 +00:00
} ,
"default-serial-baud-rate" : {
"help" : "Default baud rate for a Serial or RawSerial instance (if not specified in the constructor)" ,
"value" : 9600
2017-11-14 10:09:07 +00:00
} ,
"force-non-copyable-error" : {
"help" : "Force compile time error when a NonCopyable object is copied" ,
"value" : false
2018-03-21 05:05:58 +00:00
} ,
"poll-use-lowpower-timer" : {
"help" : "Enable use of low power timer class for poll(). May cause missing events." ,
"value" : false
2016-06-16 01:57:25 +00:00
}
2016-09-23 08:32:56 +00:00
} ,
"target_overrides" : {
"EFM32" : {
"stdio-baud-rate" : 115200
2016-11-07 10:54:45 +00:00
} ,
"EFR32" : {
"stdio-baud-rate" : 115200
2016-09-23 08:32:56 +00:00
}
2016-06-16 01:57:25 +00:00
}
}