Skip to content

Commit 2cf0924

Browse files
committed
fix freertos build with iar, format/indent link_type
1 parent 05e0205 commit 2cf0924

File tree

4 files changed

+953
-905
lines changed

4 files changed

+953
-905
lines changed

.codespell/exclude-file.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
return USB0.INTSTS1.BIT.ATTCH ? true : false;
1+
return LINK_REG->INTSTS1_b.ATTCH ? true : false;
2+
volatile uint16_t ATTCH : 1; /* [11..11] ATTCH Interrupt Status */
3+
#define LINK_REG_INTSTS1_ATTCH_Pos (11UL) /* ATTCH (Bit 11) */
4+
#define LINK_REG_INTSTS1_ATTCH_Msk (0x800UL) /* ATTCH (Bitfield-Mask: 0x01) */

examples/device/cdc_msc_freertos/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ SRC_C += \
3030
$(subst $(TOP)/,,$(wildcard $(TOP)/$(FREERTOS_PORT)/*.c))
3131

3232
SRC_S += \
33-
$(subst $(TOP)/,,$(wildcard $(TOP)/$(FREERTOS_PORTABLE_SRC)/*.s))
33+
$(subst $(TOP)/,,$(wildcard $(TOP)/$(FREERTOS_PORT)/*.s))
3434

3535
# include heap manage if configSUPPORT_DYNAMIC_ALLOCATION = 1
3636
# SRC_C += $(FREERTOS_SRC)/portable/MemMang/heap_1.c

examples/device/hid_composite_freertos/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ SRC_C += \
2929
$(subst $(TOP)/,,$(wildcard $(TOP)/$(FREERTOS_PORT)/*.c))
3030

3131
SRC_S += \
32-
$(subst $(TOP)/,,$(wildcard $(TOP)/$(FREERTOS_PORTABLE_SRC)/*.s))
32+
$(subst $(TOP)/,,$(wildcard $(TOP)/$(FREERTOS_PORT)/*.s))
3333

3434
# include heap manage if configSUPPORT_DYNAMIC_ALLOCATION = 1
3535
# SRC_C += $(FREERTOS_SRC)/portable/MemMang/heap_1.c

0 commit comments

Comments
 (0)