diff options
| author | iabdalkader <i.abdalkader@gmail.com> | 2024-02-13 08:33:45 +0100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2024-02-15 09:45:14 +1100 |
| commit | be8d660fc24c3390aedd156b796a3a88ae737ae9 (patch) | |
| tree | 2a0175142e488427ab4cee0fc98d2d70dc9eb173 | |
| parent | 0432f73206a0d0ff5cef5dc6146f18439079f6f3 (diff) | |
mimxrt: Fix header include guard names.
Signed-off-by: iabdalkader <i.abdalkader@gmail.com>
| -rw-r--r-- | ports/mimxrt/cyw43_configport.h | 6 | ||||
| -rw-r--r-- | ports/mimxrt/pendsv.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/ports/mimxrt/cyw43_configport.h b/ports/mimxrt/cyw43_configport.h index f1cfc86cb..619db24b1 100644 --- a/ports/mimxrt/cyw43_configport.h +++ b/ports/mimxrt/cyw43_configport.h @@ -24,8 +24,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ -#ifndef MICROPY_INCLUDED_STM32_CYW43_CONFIGPORT_H -#define MICROPY_INCLUDED_STM32_CYW43_CONFIGPORT_H +#ifndef MICROPY_INCLUDED_MIMXRT_CYW43_CONFIGPORT_H +#define MICROPY_INCLUDED_MIMXRT_CYW43_CONFIGPORT_H // The board-level config will be included here, so it can set some CYW43 values. #include "py/mpconfig.h" @@ -152,4 +152,4 @@ static inline int cyw43_sdio_transfer_cmd53(bool write, uint32_t block_size, uin #define CYW43_EVENT_POLL_HOOK MICROPY_EVENT_POLL_HOOK -#endif // MICROPY_INCLUDED_STM32_CYW43_CONFIGPORT_H +#endif // MICROPY_INCLUDED_MIMXRT_CYW43_CONFIGPORT_H diff --git a/ports/mimxrt/pendsv.h b/ports/mimxrt/pendsv.h index f3369b07f..d68c5aa2d 100644 --- a/ports/mimxrt/pendsv.h +++ b/ports/mimxrt/pendsv.h @@ -23,8 +23,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ -#ifndef MICROPY_INCLUDED_STM32_PENDSV_H -#define MICROPY_INCLUDED_STM32_PENDSV_H +#ifndef MICROPY_INCLUDED_MIMXRT_PENDSV_H +#define MICROPY_INCLUDED_MIMXRT_PENDSV_H enum { PENDSV_DISPATCH_SOFT_TIMER, // For later & for having at least one entry @@ -45,4 +45,4 @@ typedef void (*pendsv_dispatch_t)(void); void pendsv_init(void); void pendsv_schedule_dispatch(size_t slot, pendsv_dispatch_t f); -#endif // MICROPY_INCLUDED_STM32_PENDSV_H +#endif // MICROPY_INCLUDED_MIMXRT_PENDSV_H |
