FPGA CI TEST SHIELD: add test config json file

pull/12826/head
jeromecoutant 2020-03-30 17:57:00 +02:00 committed by Arto Kinnunen
parent 04dacfaac3
commit 6963b987d1
1 changed files with 30 additions and 0 deletions

30
TESTS/configs/fpga.json Normal file
View File

@ -0,0 +1,30 @@
{
"target_overrides": {
"*": {
"target.components_add": [
"FPGA_CI_TEST_SHIELD"
]
},
"MCU_NRF52840": {
"target.macros_add": [
"UART_TWO_STOP_BITS_NOT_SUPPORTED",
"UART_ODD_PARITY_NOT_SUPPORTED"
]
},
"K64F": {
"target.macros_add": [
"UART_7BITS_PARITY_NONE_NOT_SUPPORTED"
]
},
"STM": {
"target.macros_add": [
"UART_9BITS_PARITY_NOT_SUPPORTED"
]
},
"STM32F4": {
"target.macros_add": [
"UART_7BITS_PARITY_NONE_NOT_SUPPORTED"
]
}
}
}