extmod/nimble: Set struct alignment correctly on 64-bit arch.

This commit is contained in:
Jim Mussared 2020-08-17 18:12:20 +10:00 committed by Damien George
parent ed14435a8e
commit 5b08676d6a

View File

@ -33,7 +33,7 @@
// --- Configuration of NimBLE data structures --------------------------------
#define BLE_NPL_OS_ALIGNMENT (4)
#define BLE_NPL_OS_ALIGNMENT (sizeof(uintptr_t))
#define BLE_NPL_TIME_FOREVER (0xffffffff)
typedef uint32_t ble_npl_time_t;