cpu/cc26x0: set CPU_HAS_BITBAND

> Bit-banding is supported in order to reduce the execution time for
> read-modify-write (RMW) operations to memory.
> With bit-banding, certain regions in the memory map
> (SRAM and peripheral space) can use address aliases to access
> individual bits in one atomic operation.

https://www.ti.com/lit/ug/swcu117i/swcu117i.pdf
This commit is contained in:
Benjamin Valentin 2020-08-07 17:53:28 +02:00 committed by Benjamin Valentin
parent 098b37a7dc
commit fae0b00918

View File

@ -27,6 +27,11 @@
#include "cc26x0_fcfg.h"
#include "cc26x0_prcm.h"
/**
* @brief Bit-Band configuration
*/
#define CPU_HAS_BITBAND 1
#ifdef __cplusplus
extern "C" {
#endif