test.c/inc/board.h
2021-06-09 07:41:08 +02:00

13 lines
169 B
C

#ifndef __BOARD_H__
#define __BOARD_H__
#include "driver.h"
#include "test_drv.h"
static const struct driver tst_drv = {
.fp = &tst_fp,
.dev = NULL
};
#endif