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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,9 @@ nest: all

@cp -R $(NESTDIR)/src $(NESTDIR)/srcpreserved/ 2>/dev/null || true
@cp -R neuralspot/ns-core/src/* $(NESTDIR)/src/ns-core
ifneq ($(ARCH),apollo3)
@cp extern/AmbiqSuite/$(AS_VERSION)/src/am_resources.c $(NESTDIR)/src/ns-core/$(BOARD)
endif

# @cp $(LINKER_FILE) $(NESTDIR)/libs
@cp make/nest-makefile.mk $(NESTDIR)/Makefile.suggested
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ extern "C"
// Internal macros
//
#define SDIO_TIMING_SCAN_MIN_ACCEPTANCE_LENGTH 2 // Acceptable length should be determined based on system level test.
#define AM_HAL_CARD_DEBUG(fmt, ...) am_util_debug_printf("[CARD] line %04d - "fmt, __LINE__, ##__VA_ARGS__)
#define AM_HAL_CARD_DEBUG(fmt, ...) am_util_debug_printf("[CARD] line %04d - " fmt, __LINE__, ##__VA_ARGS__)

#define SECTOR_MODE 0x4
#define CARD_RDY_BIT ((uint32_t)0x1 << 31)
Expand Down
6 changes: 3 additions & 3 deletions extern/AmbiqSuite/R4.5.0/mcu/apollo4p/hal/am_hal_usbregs.h
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ typedef struct
__IOM uint32_t RamBits : 4;
__IOM uint32_t DMAChains : 4;
__IOM uint32_t RSTS : 1;
__IM uint32_t : 6;
__IM uint32_t nop : 6;
__IOM uint32_t EDMAOUT : 1;
__IOM uint32_t EDMAIN : 1;
} INFO_b;
Expand Down Expand Up @@ -477,9 +477,9 @@ typedef struct
struct
{
__IOM uint32_t PHYREFCLKDIS : 1;
__IM uint32_t : 7;
__IM uint32_t nop : 7;
__IOM uint32_t CTRLAPBCLKDIS : 1;
__IM uint32_t : 7;
__IM uint32_t nop1 : 7;
__IOM uint32_t PHYAPBLCLKDIS : 1;
} CLKCTRL_b;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ extern "C"
// Internal macros
//
#define SDIO_TIMING_SCAN_MIN_ACCEPTANCE_LENGTH 2 // Acceptable length should be determined based on system level test.
#define AM_HAL_CARD_DEBUG(fmt, ...) am_util_debug_printf("[CARD] line %04d - "fmt, __LINE__, ##__VA_ARGS__)
#define AM_HAL_CARD_DEBUG(fmt, ...) am_util_debug_printf("[CARD] line %04d - " fmt, __LINE__, ##__VA_ARGS__)

#define SECTOR_MODE 0x4
#define CARD_RDY_BIT ((uint32_t)0x1 << 31)
Expand Down
179,105 changes: 179,105 additions & 0 deletions extern/AmbiqSuite/R4.5.0/pack/SVD/apollo4b.svd

Large diffs are not rendered by default.

166,690 changes: 166,690 additions & 0 deletions extern/AmbiqSuite/R4.5.0/pack/SVD/apollo4l.svd

Large diffs are not rendered by default.

180,450 changes: 180,450 additions & 0 deletions extern/AmbiqSuite/R4.5.0/pack/SVD/apollo4p.svd

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
7 changes: 0 additions & 7 deletions extern/AmbiqSuite/R4.5.0/third_party/cordio/module.mk
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,4 @@ includes_api += $(subdirectory)/devices
# Uncomment out the local_src, local_bin, bindirs, and make-library lines to create new cordio.a
lib_prebuilt += $(subdirectory)/lib/$(BOARD)/$(EVB)/$(COMPILERNAME)/cordio.a


# ifeq ($(TOOLCHAIN),arm)
# lib_prebuilt += $(subdirectory)/lib/cordio_armclang.a
# else
# lib_prebuilt += $(subdirectory)/lib/cordio_gcc.a
# endif

# $(eval $(call make-library, $(local_bin)/cordio.a, $(local_src)))
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef signed short int16_t;
typedef unsigned short uint16_t;
typedef signed long int32_t;
typedef unsigned long uint32_t;
// typedef signed long int32_t;
// typedef unsigned long uint32_t;
typedef unsigned long long uint64_t;
#endif

Expand Down
Loading