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

tests: add missing includes

This commit is contained in:
Karl Fessel 2022-11-11 20:07:49 +01:00
parent af8589059e
commit 54ada3685a
17 changed files with 19 additions and 1 deletions

View File

@ -21,8 +21,8 @@
#include <stdio.h>
#include <stdlib.h>
#include "kernel_defines.h"
#include "can/can_trx.h"
#include "shell.h"
#ifdef MODULE_TJA1042

View File

@ -11,6 +11,7 @@
#include "stdio_uart.h"
#include "board.h"
#include "periph/gpio.h"
#include "container.h"
#include <stdio.h>
#include <string.h>

View File

@ -9,6 +9,7 @@
#include "feetech.h"
#include "shell.h"
#include "stdio_uart.h"
#include "container.h"
#include <stdio.h>
#include <string.h>

View File

@ -22,6 +22,7 @@
#include "sdcard_spi_internal.h"
#include "sdcard_spi_params.h"
#include "fmt.h"
#include "container.h"
#include <inttypes.h>
#include <stdlib.h>
#include <string.h>

View File

@ -20,9 +20,11 @@
*/
#include <stdio.h>
#include <stddef.h>
#include "shell.h"
#include "sht1x_params.h"
#include "container.h"
#define SHT1X_NUM ARRAY_SIZE(sht1x_params)
extern sht1x_dev_t sht1x_devs[SHT1X_NUM];

View File

@ -13,6 +13,7 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <stddef.h>
#include "shell.h"
int main(void)

View File

@ -13,6 +13,7 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <stddef.h>
#include "shell.h"
int main(void)

View File

@ -13,6 +13,7 @@
* @author Martine Lenders <m.lenders@fu-berlin.de>
*/
#include <stddef.h>
#include "shell.h"
int main(void)

View File

@ -23,6 +23,7 @@
#include "cpu.h"
#include "embUnit.h"
#include "embUnit/embUnit.h"
#include "modules.h"
/* need to define these values before including the header */
#ifndef FLASHPAGE_SIZE

View File

@ -19,6 +19,7 @@
#include <stdio.h>
#include "phydat.h"
#include "container.h"
typedef struct {
phydat_t dat;

View File

@ -24,6 +24,7 @@
#include "mtd.h"
#include "fatfs_diskio_mtd.h"
#include "shell.h"
#include "container.h"
#include <string.h>
#include <stdlib.h>
#include <stdio.h>

View File

@ -25,6 +25,7 @@
#include "embUnit/embUnit.h"
#include "fmt.h"
#include "cbor.h"
#include "container.h"
const char *tests[] = {
"00", /* 0 */

View File

@ -9,6 +9,7 @@
#include <string.h>
#include "embUnit.h"
#include "tests-clif.h"
#include "container.h"
#include "clif.h"

View File

@ -6,6 +6,7 @@
* directory for more details.
*/
#include <stddef.h>
#include <stdint.h>
#include <limits.h>
#include "embUnit.h"

View File

@ -7,6 +7,8 @@
*/
#include <string.h>
#include "container.h"
#include "embUnit.h"
#include "priority_queue.h"

View File

@ -8,6 +8,7 @@
#include <sht1x.h>
#include <stdlib.h>
#include "container.h"
#include "embUnit/embUnit.h"
#include "tests-sht1x.h"

View File

@ -14,6 +14,7 @@
#include <stdio.h>
#include <stdbool.h>
#include "container.h"
#include "embUnit.h"
#include "uri_parser.h"