Initial commit

Dependencies:   FastPWM

Committer:
lypinator
Date:
Wed Sep 16 01:11:49 2020 +0000
Revision:
0:bb348c97df44
Added PWM

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lypinator 0:bb348c97df44 1 {
lypinator 0:bb348c97df44 2 "name": "platform",
lypinator 0:bb348c97df44 3 "config": {
lypinator 0:bb348c97df44 4 "stdio-convert-newlines": {
lypinator 0:bb348c97df44 5 "help": "Enable conversion to standard newlines on stdin/stdout/stderr",
lypinator 0:bb348c97df44 6 "value": false
lypinator 0:bb348c97df44 7 },
lypinator 0:bb348c97df44 8
lypinator 0:bb348c97df44 9 "stdio-convert-tty-newlines": {
lypinator 0:bb348c97df44 10 "help": "Enable conversion to standard newlines on any tty FILE stream",
lypinator 0:bb348c97df44 11 "value": false
lypinator 0:bb348c97df44 12 },
lypinator 0:bb348c97df44 13
lypinator 0:bb348c97df44 14 "stdio-buffered-serial": {
lypinator 0:bb348c97df44 15 "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.",
lypinator 0:bb348c97df44 16 "value": false
lypinator 0:bb348c97df44 17 },
lypinator 0:bb348c97df44 18
lypinator 0:bb348c97df44 19 "stdio-baud-rate": {
lypinator 0:bb348c97df44 20 "help": "Baud rate for stdio",
lypinator 0:bb348c97df44 21 "value": 9600
lypinator 0:bb348c97df44 22 },
lypinator 0:bb348c97df44 23
lypinator 0:bb348c97df44 24 "stdio-flush-at-exit": {
lypinator 0:bb348c97df44 25 "help": "Enable or disable the flush of standard I/O's at exit.",
lypinator 0:bb348c97df44 26 "value": true
lypinator 0:bb348c97df44 27 },
lypinator 0:bb348c97df44 28
lypinator 0:bb348c97df44 29 "default-serial-baud-rate": {
lypinator 0:bb348c97df44 30 "help": "Default baud rate for a Serial or RawSerial instance (if not specified in the constructor)",
lypinator 0:bb348c97df44 31 "value": 9600
lypinator 0:bb348c97df44 32 },
lypinator 0:bb348c97df44 33
lypinator 0:bb348c97df44 34 "force-non-copyable-error": {
lypinator 0:bb348c97df44 35 "help": "Force compile time error when a NonCopyable object is copied",
lypinator 0:bb348c97df44 36 "value": false
lypinator 0:bb348c97df44 37 },
lypinator 0:bb348c97df44 38
lypinator 0:bb348c97df44 39 "poll-use-lowpower-timer": {
lypinator 0:bb348c97df44 40 "help": "Enable use of low power timer class for poll(). May cause missing events.",
lypinator 0:bb348c97df44 41 "value": false
lypinator 0:bb348c97df44 42 },
lypinator 0:bb348c97df44 43
lypinator 0:bb348c97df44 44 "error-hist-enabled": {
lypinator 0:bb348c97df44 45 "help": "Enable for error history tracking.",
lypinator 0:bb348c97df44 46 "value": false
lypinator 0:bb348c97df44 47 },
lypinator 0:bb348c97df44 48
lypinator 0:bb348c97df44 49 "error-hist-size": {
lypinator 0:bb348c97df44 50 "help": "Set the number of most recent errors the system keeps in its history, needs error-hist-enabled set to true for this to work.",
lypinator 0:bb348c97df44 51 "value": 4
lypinator 0:bb348c97df44 52 },
lypinator 0:bb348c97df44 53
lypinator 0:bb348c97df44 54 "error-filename-capture-enabled": {
lypinator 0:bb348c97df44 55 "help": "Enables capture of filename and line number as part of error context capture, this works only for debug and develop builds. On release builds, filename capture is always disabled",
lypinator 0:bb348c97df44 56 "value": false
lypinator 0:bb348c97df44 57 },
lypinator 0:bb348c97df44 58
lypinator 0:bb348c97df44 59 "error-all-threads-info": {
lypinator 0:bb348c97df44 60 "help": "Reports all the threads in the system as part of error report.",
lypinator 0:bb348c97df44 61 "value": false
lypinator 0:bb348c97df44 62 },
lypinator 0:bb348c97df44 63
lypinator 0:bb348c97df44 64 "max-error-filename-len": {
lypinator 0:bb348c97df44 65 "help": "Sets the maximum length of buffer used for capturing the filename in error context. This needs error-filename-capture-enabled feature.",
lypinator 0:bb348c97df44 66 "value": 16
lypinator 0:bb348c97df44 67 }
lypinator 0:bb348c97df44 68 },
lypinator 0:bb348c97df44 69 "target_overrides": {
lypinator 0:bb348c97df44 70 "EFM32": {
lypinator 0:bb348c97df44 71 "stdio-baud-rate": 115200
lypinator 0:bb348c97df44 72 },
lypinator 0:bb348c97df44 73 "EFR32": {
lypinator 0:bb348c97df44 74 "stdio-baud-rate": 115200
lypinator 0:bb348c97df44 75 }
lypinator 0:bb348c97df44 76 }
lypinator 0:bb348c97df44 77 }