1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/*: realign ENABLE_DEBUG

This commit is contained in:
Bas Stottelaar 2020-10-22 11:34:00 +02:00
parent e675b6379e
commit 22243aec7a
144 changed files with 154 additions and 154 deletions

View File

@ -33,7 +33,7 @@
#include "periph/init.h"
#include "panic.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#ifndef MCUSR

View File

@ -24,7 +24,7 @@
#include "cpu.h"
#include "periph/eeprom.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
size_t eeprom_read(uint32_t pos, void *data, size_t len)

View File

@ -37,7 +37,7 @@
#include "periph_cpu.h"
#include "atmega_gpio.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#ifdef MODULE_PERIPH_GPIO_IRQ

View File

@ -30,7 +30,7 @@
#include "periph/i2c.h"
#include "periph_conf.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define MT_START 0x08

View File

@ -51,7 +51,7 @@
#include "periph/rtt.h"
#include "periph_conf.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#if RTT_BACKEND_SC

View File

@ -31,7 +31,7 @@
#include "periph/timer.h"
#include "periph_conf.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/**

View File

@ -28,7 +28,7 @@
#include <avr/interrupt.h>
#include "avr/wdt.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
uint8_t wdt_prescaler = WDTO_15MS;

View File

@ -29,7 +29,7 @@
#include "periph_cpu.h"
#include "periph/adc.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
static cc2538_soc_adc_t *soc_adc = (cc2538_soc_adc_t *)SOC_ADC_BASE;

View File

@ -28,7 +28,7 @@
#include "bitarithm.h"
#include "periph/gpio.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define MODE_NOTSUP (0xff)

View File

@ -27,7 +27,7 @@
#include "cpu.h"
#include "periph/hwrng.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
static cc2538_soc_adc_t *soc_adc = (cc2538_soc_adc_t *)SOC_ADC_BASE;

View File

@ -31,7 +31,7 @@
#include "periph/gpio.h"
#include "periph/i2c.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/* short cuts macros */

View File

@ -22,7 +22,7 @@
#include "vendor/hw_nvic.h"
#include "periph/pm.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
void pm_set(unsigned mode)

View File

@ -25,7 +25,7 @@
#include "cpu.h"
#include "periph/rtt.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define SMWDTHROSC_STLOAD_STLOAD_MASK (0x00000001)

View File

@ -29,7 +29,7 @@
#include "assert.h"
#include "periph/spi.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/**

View File

@ -30,7 +30,7 @@
#include "periph/timer.h"
#include "periph_conf.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define LOAD_VALUE_16_BIT (UINT16_MAX)

View File

@ -25,7 +25,7 @@
#include "cc2538_rf.h"
#include "cc2538_rf_netdev.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/**

View File

@ -23,7 +23,7 @@
#include "cc2538_rf.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/* static const __flash uint8_t? */

View File

@ -25,7 +25,7 @@
#include "cc2538_rf_netdev.h"
#include "cc2538_rf_internal.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
void isr_rfcoreerr(void)

View File

@ -28,7 +28,7 @@
#include "cc2538_rf_netdev.h"
#include "cc2538_rf_internal.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/* Reference pointer for the IRQ handler */

View File

@ -31,7 +31,7 @@
#include "cc26xx_cc13xx_power.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define LOAD_VALUE (0xffff)

View File

@ -100,7 +100,7 @@
#include "irq.h"
#include "cpu.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
extern uint32_t _estack;

View File

@ -31,7 +31,7 @@
#include "timex.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
static WDOG_PeriodSel_TypeDef _get_prescaler(uint32_t max_time)

View File

@ -33,7 +33,7 @@
#include "timex.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#ifdef MODULE_PERIPH_WDT_CB

View File

@ -18,7 +18,7 @@
#ifdef MODULE_ESP_ETH
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include "log.h"
#include "tools.h"

View File

@ -31,7 +31,7 @@
#include "soc/sens_reg.h"
#include "soc/sens_struct.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/* declaration of external functions */

View File

@ -27,7 +27,7 @@
#include "soc/sens_reg.h"
#include "soc/sens_struct.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/**

View File

@ -41,7 +41,7 @@
#include "xtensa/xtensa_api.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/** Common ESP CAN definitions */

View File

@ -31,7 +31,7 @@
#include "soc/sens_reg.h"
#include "soc/sens_struct.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/* declaration of external functions */

View File

@ -18,7 +18,7 @@
* @}
*/
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include <assert.h>

View File

@ -36,7 +36,7 @@
* notice.
*/
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include <assert.h>

View File

@ -18,7 +18,7 @@
* @}
*/
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include "esp_attr.h"

View File

@ -28,7 +28,7 @@
#include "rtt_arch.h"
#include "syscalls.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define RTC_CLK_CAL_FRACT 19 /* fractional bits of calibration value */

View File

@ -33,7 +33,7 @@
#include "syscalls.h"
#include "timex.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define RTC_CLK_CAL_FRACT 19 /* fractional bits of calibration value */

View File

@ -31,7 +31,7 @@
#include "syscalls.h"
#include "timex.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define TIMER_SYSTEM_GROUP TIMERG0

View File

@ -22,7 +22,7 @@
* WARNING! enable debugging will have timing side effects and can lead
* to timer underflows, system crashes or system dead locks in worst case.
*/
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include "periph/timer.h"

View File

@ -40,7 +40,7 @@
#include "esp_heap_caps.h"
#endif
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define MHZ 1000000UL

View File

@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include <stdio.h>

View File

@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include <stdio.h>

View File

@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include "eth_phy/phy.h"

View File

@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include "esp_attr.h"

View File

@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include "esp_attr.h"

View File

@ -10,7 +10,7 @@
#ifndef DOXYGEN
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include "esp_attr.h"

View File

@ -18,7 +18,7 @@
* @}
*/
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include "sdk/sdk.h"

View File

@ -19,7 +19,7 @@
* @}
*/
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include "cpu.h"

View File

@ -26,7 +26,7 @@
#include "esp_heap_caps.h"
#endif
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#ifdef MODULE_ESP_IDF_HEAP

View File

@ -18,7 +18,7 @@
* @author Gunar Schorcht <gunar@schorcht.net>
*/
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include <stdint.h>

View File

@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include <string.h>
#include <assert.h>

View File

@ -30,7 +30,7 @@
#include "esp_now_gnrc.h"
#include "net/gnrc/netif.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
static int _send(gnrc_netif_t *netif, gnrc_pktsnip_t *pkt)

View File

@ -40,7 +40,7 @@
#include "esp_now_params.h"
#include "esp_now_netdev.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define ESP_NOW_UNICAST (1)

View File

@ -31,7 +31,7 @@
#include "xtensa/corebits.h"
#include "xtensa/xtensa_api.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
extern void heap_stats(void);

View File

@ -10,7 +10,7 @@
#ifndef DOXYGEN
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include <string.h>

View File

@ -10,7 +10,7 @@
#ifndef DOXYGEN
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include <string.h>

View File

@ -10,7 +10,7 @@
#ifndef DOXYGEN
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include <assert.h>

View File

@ -10,7 +10,7 @@
#ifndef DOXYGEN
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include <assert.h>

View File

@ -10,7 +10,7 @@
#ifndef DOXYGEN
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include <assert.h>

View File

@ -10,7 +10,7 @@
#ifndef DOXYGEN
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include <assert.h>

View File

@ -48,7 +48,7 @@
#endif /* MCU_ESP32 */
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define ESP_PART_TABLE_ADDR 0x8000 /* TODO configurable as used in Makefile.include */

View File

@ -26,7 +26,7 @@
described in [wikipedia](https://en.wikipedia.org/wiki/I%C2%B2C#Example_of_bit-banging_the_I%C2%B2C_master_protocol).
*/
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#include <assert.h>

View File

@ -37,7 +37,7 @@
#include "malloc.h"
#endif
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#ifndef MODULE_PTHREAD

View File

@ -23,7 +23,7 @@
#include "periph/gpio.h"
#include "periph_conf.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#ifdef MODULE_PERIPH_GPIO_IRQ

View File

@ -23,7 +23,7 @@
#include "periph/timer.h"
#include "periph_conf.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/**

View File

@ -33,7 +33,7 @@
#include "vendor/platform.h"
#include "vendor/prci_driver.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define I2C_BUSY_TIMEOUT (0xffff)

View File

@ -23,7 +23,7 @@
#include "periph/rtt.h"
#include "periph/rtc.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"

View File

@ -34,7 +34,7 @@
#include "vendor/platform.h"
#include "vendor/plic_driver.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/* Convert RTT freq to pre-scaler value */

View File

@ -29,9 +29,14 @@
#include "vendor/spi.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define SPI_CLK_NUMOF ARRAY_SIZE(_spi_clks)
/* DIV_UP is division which rounds up instead of down */
#define SPI_DIV_UP(a, b) (((a) + ((b) - 1)) / (b))
static const uint32_t _spi_clks[] = {
100000,
400000,
@ -40,13 +45,8 @@ static const uint32_t _spi_clks[] = {
10000000,
};
#define SPI_CLK_NUMOF ARRAY_SIZE(_spi_clks)
static uint32_t _spi_clks_config[SPI_CLK_NUMOF] = { 0 };
/* DIV_UP is division which rounds up instead of down */
#define SPI_DIV_UP(a,b) (((a) + ((b) - 1)) / (b))
/**
* @brief Allocation device locks
*/

View File

@ -29,7 +29,7 @@
#include "vendor/aon.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
void wdt_start(void)

View File

@ -36,13 +36,13 @@
#include "periph_conf.h"
#include "periph/i2c.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
/* Define ENABLE_TRACE to 1 to enable printing of all TX/RX bytes to UART for extra verbose debugging */
#define ENABLE_TRACE (1)
#define ENABLE_TRACE (1)
/* Define ENABLE_INIT_DEBUG to 1 to enable DEBUG prints in i2c_init. Currently
* this causes the system to hang when running i2c_init during boot because of
* uninitialized stdio UART */
#define ENABLE_INIT_DEBUG (0)
#define ENABLE_INIT_DEBUG (0)
#include "debug.h"
#if ENABLE_TRACE

View File

@ -23,7 +23,7 @@
#include "periph/pm.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/* Set to 1 to use the LEDx macros to show which sleep mode is entered */

View File

@ -25,7 +25,7 @@
#include "periph/rtt.h"
#include "periph_conf.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
typedef struct {

View File

@ -33,7 +33,7 @@
#include "periph/rtt.h"
#include "periph_conf.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
typedef struct {

View File

@ -31,7 +31,7 @@
#include "assert.h"
#include "periph/spi.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/**

View File

@ -42,7 +42,7 @@
#define KINETIS_PIT_COMBINED_IRQ 0
#endif
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define PIT_MAX_VALUE (PIT_LDVAL_TSV_MASK >> PIT_LDVAL_TSV_SHIFT)

View File

@ -31,7 +31,7 @@
#include "periph_conf.h"
#include "periph/uart.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#ifndef KINETIS_HAVE_LPUART

View File

@ -27,7 +27,7 @@
#include "periph/gpio.h"
#include "periph_conf.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define NUM_OF_PORT 6

View File

@ -27,7 +27,7 @@
#include "periph_conf.h"
#include "board.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/**

View File

@ -26,7 +26,7 @@
#include "periph/timer.h"
#include "mutex.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/**

View File

@ -26,7 +26,7 @@
#include "iap.h"
#include "lpc23xx.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/* pointer to reserved flash rom section for configuration data */

View File

@ -19,7 +19,7 @@
#include "xtimer.h"
#include "diskio.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/* --- MCI configurations --- */

View File

@ -28,7 +28,7 @@
#include "bitarithm.h"
#include "bitfield.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#ifdef MODULE_PERIPH_GPIO_IRQ

View File

@ -33,7 +33,7 @@
#include "thread.h"
#include "mutex.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#if I2C_NUMOF > 0

View File

@ -25,7 +25,7 @@
#include "cpu.h"
#include "periph/pm.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
void pm_set(unsigned mode)

View File

@ -31,7 +31,7 @@
#include "VIC.h"
#include "lpc23xx.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/* Alarm callback */

View File

@ -31,7 +31,7 @@
#include "assert.h"
#include "periph/spi.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/**

View File

@ -40,7 +40,7 @@
#include "native_internal.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
volatile int native_interrupts_enabled = 0;

View File

@ -24,7 +24,7 @@
#include "native_internal.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
static int _init(mtd_dev_t *dev)

View File

@ -59,7 +59,7 @@ extern netdev_tap_t netdev_tap;
#include "native_internal.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
ucontext_t end_context;

View File

@ -61,7 +61,7 @@
#include "netdev_tap.h"
#include "net/netopt.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/* netdev interface */

View File

@ -39,7 +39,7 @@
#include "async_read.h"
#include "sched.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
static int _init(candev_t *candev);

View File

@ -30,7 +30,7 @@
#include "periph/eeprom.h"
#include "eeprom_native.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
char eeprom_file[EEPROM_FILEPATH_MAX_LEN];

View File

@ -29,7 +29,7 @@
#include "periph/hwrng.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
static int initialized = 0;

View File

@ -33,7 +33,7 @@
#include "gpiodev_linux.h"
#endif
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
void pm_set_lowest(void)

View File

@ -23,7 +23,7 @@
#include "periph/pwm.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#ifdef PWM_NUMOF

View File

@ -44,7 +44,7 @@
#include "periph/qdec.h"
#include "periph/gpio.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#ifdef QDEC_NUMOF

View File

@ -33,7 +33,7 @@
#include "native_internal.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
static int _native_rtc_initialized = 0;

View File

@ -39,7 +39,7 @@
#include "periph/gpio.h"
#endif
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/**

View File

@ -48,7 +48,7 @@
#include "native_internal.h"
#include "periph/timer.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define NATIVE_TIMER_SPEED 1000000

View File

@ -31,7 +31,7 @@
#include "native_internal.h"
#include "async_read.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
/**

View File

@ -32,7 +32,7 @@
#include "socket_zep.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
#define _UNIX_NTP_ERA_OFFSET (2208988800U)

View File

@ -47,7 +47,7 @@
#include "periph/init.h"
#include "periph/pm.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#include "debug.h"
typedef enum {

View File

@ -43,7 +43,7 @@
#include "native_internal.h"
#define ENABLE_DEBUG (0)
#define ENABLE_DEBUG 0
#if ENABLE_DEBUG
#define LOCAL_DEBUG (1)
#endif

Some files were not shown because too many files have changed in this diff Show More