Wenn0101

Results 4 issues of Wenn0101

Add new target chip ambiq AMA3B1KK (apollo3) Add new board Sparkfun Artemis Dev Kit (kl26z hic AMA3B1KK) Hardware design of board can be found here: https://github.com/sparkfun/ArtemisDevKit/tree/v03 Current hardware is on...

**Quick Steps to Reproduce:** ``` am_hal_stimer_config(AM_HAL_STIMER_CFG_CLEAR | AM_HAL_STIMER_CFG_FREEZE); am_hal_stimer_config(AM_HAL_STIMER_HFRC_3MHZ); am_hal_stimer_int_enable(AM_HAL_STIMER_INT_COMPAREA); am_hal_stimer_compare_delta_set(0, 50000); ``` - observe no interrupt fired **Description** There are 2 bits that need to be set in order...

hal-functionality
2.5.1

See code below: ``` void am_hal_triple_read(uint32_t u32TimerAddr, uint32_t ui32Data[]) { __asm ( " push {R1, R4}\n" " mrs R4, PRIMASK\n" " cpsid i\n" " nop\n" " ldr R1, [R0, #0]\n"...

2.5.1

Anontmous bitfields should not have qualifiers and generate errors with the armc6 compiler. `__IM uint32_t : 1;` should be changed to ` uint32_t : 1;`