17 lines
249 B
C
17 lines
249 B
C
|
#include <windows.h>
|
||
|
#include <stdint.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
#include "board/bpreader.h"
|
||
|
|
||
|
static struct bpreader_config config;
|
||
|
|
||
|
HRESULT bpreader_init(uint16_t port)
|
||
|
{
|
||
|
return S_OK;
|
||
|
}
|
||
|
|
||
|
void bpreader_congif_init(struct bpreader_config *cfg)
|
||
|
{
|
||
|
|
||
|
}
|