Skip to content

Instantly share code, notes, and snippets.

View jia200x's full-sized avatar
🎯
Focusing

José Alamos jia200x

🎯
Focusing
  • HAW Hamburg
  • Hamburg, Germany
View GitHub Profile

Failed tests

conn_can

make RIOT_CI_BUILD=1 CC_NOCOLOR=1 --no-print-directory -C /home/jialamos/Development/RIOT/tests/conn_can clean all
Building application "tests_conn_can" for "native" with MCU "native".

In file included from /home/jialamos/Development/RIOT/tests/conn_can/main.c:30:
/home/jialamos/Development/RIOT/sys/include/can/can.h:38:10: fatal error: libsocketcan.h: No such file or directory
 #include <libsocketcan.h>
          ^~~~~~~~~~~~~~~~
new feature: cpu/stm32l4: add support for flashpage
new feature: boards/openmoteb-cc2538: Initial support
new feature: Add support for the SODAQ ONE board
cleanup: boards/nucleo-f070: add missing periph_i2c feature
new feature: boards/nucleo-f091rc: add i2c configuration
NO_TYPE: make: introduce common Python lib path
new feature: Fmt: add fmt hex byte
cleanup: drivers/periph_common/eeprom: move EEPROM definitions to periph_cpu.
cleanup: drivers/adxl345: fixes & cleanup
cleanup: tools:pyterm fix deprecation warnings
boards/cc2538dk/include/board.h-#define UPDATE_CCA 1
boards/chronos/include/board.h-#define __CC430F6137__
boards/common/arduino-due/include/sdcard_spi_params.h-#define SDCARD_SPI_PARAM_SPI (SPI_DEV(0))
boards/common/arduino-due/include/sdcard_spi_params.h-#define SDCARD_SPI_PARAM_CS (ARDUINO_PIN_4)
boards/common/arduino-due/include/sdcard_spi_params.h-#define SDCARD_SPI_PARAM_CLK (ARDUINO_PIN_76)
boards/common/arduino-due/include/sdcard_spi_params.h-#define SDCARD_SPI_PARAM_MOSI (ARDUINO_PIN_75)
boards/common/arduino-due/include/sdcard_spi_params.h-#define SDCARD_SPI_PARAM_MISO (ARDUINO_PIN_74)
boards/common/arduino-due/include/sdcard_spi_params.h-#define SDCARD_SPI_PARAM_POWER (GPIO_UNDEF)
boards/common/arduino-due/include/w5100_params.h-#define W5100_PARAM_SPI (SPI_DEV(0))
boards/common/arduino-due/include/w5100_params.h-#define W5100_PARAM_SPI_CLK (SPI_CLK_5MHZ)
Time[s], Channel 0
0.000000000000000, 1
0.581820833333333, 0
0.588485833333333, 1
0.654332083333333, 0
0.855259250000000, 1
1.257140916666667, 0
1.859995833333334, 1
2.663804416666667, 0
3.668466000000000, 1
Time[s], Channel 0
0.000000000000000, 1
9.122621916666667, 0
19.173671916666667, 1
29.224641583333334, 0
39.275528833333333, 1
49.326053833333333, 0
59.376870916666668, 1
/*
This is a conceptual example of a "my_handler" Registry Handler that exposes `threshold` and `is_enabled` parameters.
For education purposes, it will be assumed the application crashes if a `set_threshold` function is called
when `is_enabled==false`.
Note the Registry Handler is not aware of any storage mechanism.
*/
/* Define a handler for the current RIOT module */
registry_handler_t my_handler = {
217,222c217,222
< * Backoff condition above ensures that 'target - XTIMER_OVERHEAD` is later
< * than 'now', also for values when now will overflow and the value of target
< * is smaller then now.
< * If `target < XTIMER_OVERHEAD` the new target will be at the end of this
< * 32bit period, as `target - XTIMER_OVERHEAD` is a big number instead of a
< * small at the beginning of the next period. */
---
> * Backoff condition above ensures that 'target - XTIMER_OVERHEAD` is later
> * than 'now', also for values when now will overflow and the value of target
diff --git a/drivers/at86rf2xx/at86rf2xx_netdev.c b/drivers/at86rf2xx/at86rf2xx_netdev.c
index c988ac72b..d20de8e9e 100644
--- a/drivers/at86rf2xx/at86rf2xx_netdev.c
+++ b/drivers/at86rf2xx/at86rf2xx_netdev.c
@@ -33,6 +33,7 @@
#include "net/ieee802154.h"
#include "net/netdev.h"
#include "net/netdev/ieee802154.h"
+#include "net/netbuf.h"
diff --git a/tests/driver_at86rf2xx/Makefile b/tests/driver_at86rf2xx/Makefile
index 3964b90e6..6c12db43c 100644
--- a/tests/driver_at86rf2xx/Makefile
+++ b/tests/driver_at86rf2xx/Makefile
@@ -10,6 +10,7 @@ USEMODULE += od
USEMODULE += shell
USEMODULE += shell_commands
USEMODULE += ps
+USEMODULE += core_tasklet