mirror of
https://github.com/pine64/blisp.git
synced 2024-12-23 06:50:13 +00:00
18 lines
293 B
C
18 lines
293 B
C
|
#ifndef _BLISP_CHIP_H
|
||
|
#define _BLISP_CHIP_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
enum blisp_chip_type {
|
||
|
BLISP_CHIP_BL70X
|
||
|
};
|
||
|
|
||
|
struct blisp_chip { // TODO: Move elsewhere?
|
||
|
enum blisp_chip_type type;
|
||
|
bool usb_isp_available;
|
||
|
};
|
||
|
|
||
|
extern struct blisp_chip blisp_chip_bl70x;
|
||
|
|
||
|
#endif
|