Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
3 changes: 1 addition & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ list(APPEND INCLUDE_SDK_DIRS
"${SDK_DIRECTORY}/nRF5SDK/components/libraries/bootloader"
"${SDK_DIRECTORY}/nRF5SDK/components/libraries/fstorage"
"${SDK_DIRECTORY}/nRF5SDK/components/libraries/experimental_section_vars"
"${SDK_DIRECTORY}/nRF5SDK/components/softdevice/s113/headers"
"${SDK_DIRECTORY}/nRF5SDK/components/softdevice"
"${SDK_DIRECTORY}/nRF5SDK/components/libraries/mutex"
"${SDK_DIRECTORY}/nRF5SDK/components/libraries/delay"
"${SDK_DIRECTORY}/nRF5SDK/components/libraries/bootloader/ble_dfu"
Expand All @@ -89,7 +89,6 @@ endif()
list(APPEND INCLUDE_SDK_DIRS
"${SDK_DIRECTORY}/nRF5SDK/components/libraries/fds"
"${SDK_DIRECTORY}/nRF5SDK/components/libraries/atomic_flags"
"${SDK_DIRECTORY}/nRF5SDK/components/softdevice/s113/headers/nrf52"
"${SDK_DIRECTORY}/nRF5SDK/components/ble/ble_services/ble_dfu"
)

Expand Down
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/ble.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/ble.h"
#endif

#ifdef S113
#include "s113/headers/ble.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/ble_err.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/ble_err.h"
#endif

#ifdef S113
#include "s113/headers/ble_err.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/ble_gap.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/ble_gap.h"
#endif

#ifdef S113
#include "s113/headers/ble_gap.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/ble_gatt.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/ble_gatt.h"
#endif

#ifdef S113
#include "s113/headers/ble_gatt.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/ble_gattc.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/ble_gattc.h"
#endif

#ifdef S113
#include "s113/headers/ble_gattc.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/ble_gatts.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/ble_gatts.h"
#endif

#ifdef S113
#include "s113/headers/ble_gatts.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/ble_hci.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/ble_hci.h"
#endif

#ifdef S113
#include "s113/headers/ble_hci.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/ble_l2cap.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/ble_l2cap.h"
#endif

#ifdef S113
#include "s113/headers/ble_l2cap.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/ble_ranges.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/ble_ranges.h"
#endif

#ifdef S113
#include "s113/headers/ble_ranges.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/ble_types.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/ble_types.h"
#endif

#ifdef S113
#include "s113/headers/ble_types.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/nrf_error.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/nrf_error.h"
#endif

#ifdef S113
#include "s113/headers/nrf_error.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/nrf_error_sdm.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/nrf_error_sdm.h"
#endif

#ifdef S113
#include "s113/headers/nrf_error_sdm.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/nrf_error_soc.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/nrf_error_soc.h"
#endif

#ifdef S113
#include "s113/headers/nrf_error_soc.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/nrf_mbr.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/nrf52/nrf_mbr.h"
#endif

#ifdef S113
#include "s113/headers/nrf52/nrf_mbr.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/nrf_nvic.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/nrf_nvic.h"
#endif

#ifdef S113
#include "s113/headers/nrf_nvic.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/nrf_sd_def.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/nrf_sd_def.h"
#endif

#ifdef S113
#include "s113/headers/nrf_sd_def.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/nrf_sdm.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/nrf_sdm.h"
#endif

#ifdef S113
#include "s113/headers/nrf_sdm.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/nrf_soc.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/nrf_soc.h"
#endif

#ifdef S113
#include "s113/headers/nrf_soc.h"
#endif
8 changes: 8 additions & 0 deletions nRF5SDK/components/softdevice/nrf_svc.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#ifdef S140
#include "s140/headers/nrf_svc.h"
#endif

#ifdef S113
#include "s113/headers/nrf_svc.h"
#endif