Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ HciDrvRadioBoot(bool bColdBoot)
CRITICAL_PRINT("INTEN: %d\n", BLEIF->INTEN_b.BLECSSTAT);
CRITICAL_PRINT("INTENREG: %d\n", BLEIF->INTEN);

NVIC_SetVector(BLE_IRQn, HciDrvIntService);
NVIC_SetVector(BLE_IRQn, (uint32_t)HciDrvIntService);
NVIC_EnableIRQ(BLE_IRQn);

//
Expand Down
24 changes: 24 additions & 0 deletions extern/greentea-client/mbed_lib.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
// Config file for Mbed's Greentea unit test runner
"name": "greentea-client",

// Config options
"config": {
"sync-predelay": {
"help": "Wait this amount of time (in floating point seconds) after opening the serial port before sending sync.",
"value": null
},
},

// Per-target overrides
"target_overrides": {
"AMA3B1KK": {
// These boards have the serial port DTR line tied to the MCU reset, so the MCU will restart when
// the serial port is opened. It appears that if there is serial port activity within 200ms of opening the port
// (see here https://github.com/sparkfun/Apollo3_Uploader_SVL/blob/fc89de7f8163fe755021ca88e779e2963209e5a6/bootloader/src/main.c#L330)
// the MCU will get stuck in the bootloader and not boot. Based on testing, we need to wait about 300ms
// for the MCU to fully boot and be ready to accept the sync word.
"sync-predelay": 0.3
}
}
}

This file was deleted.

This file was deleted.

17 changes: 0 additions & 17 deletions features/frameworks/greentea-client/CMakeLists.txt

This file was deleted.

94 changes: 0 additions & 94 deletions features/frameworks/greentea-client/README.md

This file was deleted.

This file was deleted.

129 changes: 0 additions & 129 deletions features/frameworks/greentea-client/greentea-client/test_env.h

This file was deleted.

3 changes: 0 additions & 3 deletions features/frameworks/greentea-client/mbed_lib.json

This file was deleted.

Loading
Loading