7144e87ced
Support added for s132/s140 v6 in linker scripts and boards. Support removed for s132 v2/3/5. Download script updated to fetch new stacks and removed the non-supported ones. ble_drv.c updated to only handle s110 v8, and s132/s140 v6. ubluepy updated to continue scanning after each individual scan report reported to the module to keep old behaviour of the Scanner class.
47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
#ifndef BLUETOOTH_CONF_H__
|
|
#define BLUETOOTH_CONF_H__
|
|
|
|
// SD specific configurations.
|
|
|
|
#if (BLUETOOTH_SD == 110)
|
|
|
|
#define MICROPY_PY_BLE (1)
|
|
#define MICROPY_PY_BLE_NUS (0)
|
|
#define BLUETOOTH_WEBBLUETOOTH_REPL (0)
|
|
#define MICROPY_PY_UBLUEPY (1)
|
|
#define MICROPY_PY_UBLUEPY_PERIPHERAL (1)
|
|
|
|
#elif (BLUETOOTH_SD == 132)
|
|
|
|
#define MICROPY_PY_BLE (1)
|
|
#define MICROPY_PY_BLE_NUS (0)
|
|
#define BLUETOOTH_WEBBLUETOOTH_REPL (0)
|
|
#define MICROPY_PY_UBLUEPY (1)
|
|
#define MICROPY_PY_UBLUEPY_PERIPHERAL (1)
|
|
#define MICROPY_PY_UBLUEPY_CENTRAL (1)
|
|
|
|
#elif (BLUETOOTH_SD == 140)
|
|
|
|
#define MICROPY_PY_BLE (1)
|
|
#define MICROPY_PY_BLE_NUS (0)
|
|
#define BLUETOOTH_WEBBLUETOOTH_REPL (0)
|
|
#define MICROPY_PY_UBLUEPY (1)
|
|
#define MICROPY_PY_UBLUEPY_PERIPHERAL (1)
|
|
#define MICROPY_PY_UBLUEPY_CENTRAL (1)
|
|
|
|
#else
|
|
#error "SD not supported"
|
|
#endif
|
|
|
|
// Default defines.
|
|
|
|
#ifndef MICROPY_PY_BLE
|
|
#define MICROPY_PY_BLE (0)
|
|
#endif
|
|
|
|
#ifndef MICROPY_PY_BLE_NUS
|
|
#define MICROPY_PY_BLE_NUS (0)
|
|
#endif
|
|
|
|
#endif
|