forked from ARMmbed/mbed-os-examples-docs_only
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix CI config typo * remove extra endif * remote un-needed header file * change test configs
- Loading branch information
Qinghao Shi
authored
May 27, 2020
1 parent
b988451
commit 487c8e5
Showing
4 changed files
with
44 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,4 +47,3 @@ int main() | |
} | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,43 @@ | ||
{ | ||
"config": { | ||
"UART1_TX": "D1", | ||
"UART1_RX": "D0", | ||
"UART2_TX": "USBTX", | ||
"UART2_RX": "USBRX", | ||
"wifi-ssid": { | ||
"help": "WiFi SSID", | ||
"value": "\"SSID\"" | ||
}, | ||
"wifi-password": { | ||
"help": "WiFi Password", | ||
"value": "\"Password\"" | ||
"config": { | ||
"UART1_TX": "D1", | ||
"UART1_RX": "D0", | ||
"UART2_TX": "USBTX", | ||
"UART2_RX": "USBRX", | ||
"wifi-ssid": { | ||
"help": "WiFi SSID", | ||
"value": "\"SSID\"" | ||
}, | ||
"wifi-password": { | ||
"help": "WiFi Password", | ||
"value": "\"Password\"" | ||
}, | ||
"sock-type": "TCP", | ||
"echo-server-hostname": { | ||
"help": "Echo server host name.", | ||
"value": "\"echo.mbedcloudtesting.com\"" | ||
}, | ||
"echo-server-port": { | ||
"help": "Echo server port number.", | ||
"value": 7 | ||
}, | ||
"trace-level": { | ||
"help": "Options are TRACE_LEVEL_ERROR,TRACE_LEVEL_WARN,TRACE_LEVEL_INFO,TRACE_LEVEL_DEBUG", | ||
"macro_name": "MBED_TRACE_MAX_LEVEL", | ||
"value": "TRACE_LEVEL_INFO" | ||
} | ||
}, | ||
"sock-type": "TCP", | ||
"echo-server-hostname": { | ||
"help": "Echo server host name.", | ||
"value": "\"echo.mbedcloudtesting.com\"" | ||
}, | ||
"echo-server-port": { | ||
"help": "Echo server port number.", | ||
"value": 7 | ||
}, | ||
"trace-level": { | ||
"help": "Options are TRACE_LEVEL_ERROR,TRACE_LEVEL_WARN,TRACE_LEVEL_INFO,TRACE_LEVEL_DEBUG", | ||
"macro_name": "MBED_TRACE_MAX_LEVEL", | ||
"value": "TRACE_LEVEL_INFO" | ||
"target_overrides": { | ||
"*":{ | ||
"platform.callback-nontrivial" : "true" | ||
}, | ||
"K64F":{ | ||
"target.components_add" : ["SPIF"], | ||
"spif-driver.SPI_MOSI" : "D11", | ||
"spif-driver.SPI_MISO" : "D12", | ||
"spif-driver.SPI_CLK" : "D13", | ||
"spif-driver.SPI_CS" : "D10", | ||
"target.components_add": ["DATAFLASH"] | ||
} | ||
} | ||
}, | ||
"target_overrides": { | ||
"K64F":{ | ||
"target.components_add" : ["SPIF"], | ||
"spif-driver.SPI_MOSI" : "D11", | ||
"spif-driver.SPI_MISO" : "D12", | ||
"spif-driver.SPI_CLK" : "D13", | ||
"spif-driver.SPI_CS" : "D10", | ||
"target.components_add": ["DATAFLASH"] | ||
} | ||
} | ||
} |