13 lines
169 B
C
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
|