File tree Expand file tree Collapse file tree 3 files changed +5
-10
lines changed
features/FEATURE_BLE/targets/TARGET_STM/TARGET_NUCLEO_WB55RG Expand file tree Collapse file tree 3 files changed +5
-10
lines changed Original file line number Diff line number Diff line change 161
161
* 1 : LL Only
162
162
* 0 : LL + Host
163
163
*/
164
- #define CFG_BLE_LL_ONLY 0
164
+ #define CFG_BLE_LL_ONLY 1
165
165
166
166
167
167
/******************************************************************************
Original file line number Diff line number Diff line change 38
38
/**
39
39
* START of Section SYSTEM_DRIVER_CONTEXT
40
40
*/
41
- PLACE_IN_SECTION ( "SYSTEM_DRIVER_CONTEXT" ) static tListNode SHciAsynchEventQueue ;
42
- PLACE_IN_SECTION ( "SYSTEM_DRIVER_CONTEXT" ) static volatile SHCI_TL_CmdStatus_t SHCICmdStatus ;
43
- PLACE_IN_SECTION ( "SYSTEM_DRIVER_CONTEXT" ) static TL_CmdPacket_t * pCmdBuffer ;
44
- PLACE_IN_SECTION ( "SYSTEM_DRIVER_CONTEXT" ) SHCI_TL_UserEventFlowStatus_t SHCI_TL_UserEventFlow ;
41
+ static tListNode SHciAsynchEventQueue ;
42
+ static volatile SHCI_TL_CmdStatus_t SHCICmdStatus ;
43
+ static TL_CmdPacket_t * pCmdBuffer ;
44
+ SHCI_TL_UserEventFlowStatus_t SHCI_TL_UserEventFlow ;
45
45
/**
46
46
* END of Section SYSTEM_DRIVER_CONTEXT
47
47
*/
Original file line number Diff line number Diff line change @@ -143,13 +143,8 @@ extern "C" {
143
143
#undef PACKED_STRUCT
144
144
145
145
#if defined ( __CC_ARM )
146
- #if defined (__ARMCC_VERSION ) && (__ARMCC_VERSION >= 6010050U )
147
146
#define PACKED__ __attribute__((packed))
148
147
#define PACKED_STRUCT struct PACKED__
149
- #else
150
- #define PACKED__ (TYPE ) __packed TYPE
151
- #define PACKED_STRUCT PACKED__(struct)
152
- #endif
153
148
#elif defined ( __GNUC__ )
154
149
#define PACKED__ __attribute__((packed))
155
150
#define PACKED_STRUCT struct PACKED__
You can’t perform that action at this time.
0 commit comments