[realtek-ambz] Update Arduino core to new structure

This commit is contained in:
Kuba Szczodrzyński
2023-03-02 21:00:29 +01:00
parent dee20c859c
commit fbfd96ecdb
29 changed files with 129 additions and 195 deletions

View File

@@ -0,0 +1,6 @@
/* Copyright (c) Kuba Szczodrzyński 2023-03-02. */
// fix conflicting declaration with ArduinoCore-API
#define boolean boolean_rtl
#include_next "basic_types.h"
#undef boolean

View File

@@ -0,0 +1,6 @@
/* Copyright (c) Kuba Szczodrzyński 2023-03-02. */
// section_config.h is in the same directory as basic_types.h
// make the former include a fixup instead
#include "basic_types.h"
#include_next "section_config.h"