Skip to content

Commit b3daa08

Browse files
committed
nrf52820_hic: support for case-sensitive file-system and compilation with armclang
1 parent dc4a5a3 commit b3daa08

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

records/hic_hal/nrf52820.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ tool_specific:
3838
hic_hal:
3939
- source/hic_hal/nordic/nrf52820/armcc
4040
armclang:
41+
misc:
42+
common_flags:
43+
- -mfpu=none
4144
sources:
4245
hic_hal:
4346
- source/hic_hal/nordic/nrf52820/armcc

source/hic_hal/nordic/nrf52820/gpio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
#include "gpio.h"
2323

24-
#include "IO_config.h"
24+
#include "IO_Config.h"
2525

2626
#if (defined(GPIO_LED_ACTIVE_STATE) && (GPIO_LED_ACTIVE_STATE == 1))
2727
#define GPIO_LED_STATE(state) (state ? 1 : 0)

source/hic_hal/nordic/nrf52820/sdk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121

2222
#include "device.h"
23-
#include "IO_config.h"
23+
#include "IO_Config.h"
2424
#include "daplink.h"
2525
#include "compiler.h"
2626
#include "util.h"

0 commit comments

Comments
 (0)