blisp/include/blisp_chip.h

19 lines
319 B
C
Raw Normal View History

2022-09-25 08:58:59 +00:00
#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;
2022-10-05 09:35:44 +00:00
const char* type_str;
2022-09-25 08:58:59 +00:00
bool usb_isp_available;
};
extern struct blisp_chip blisp_chip_bl70x;
#endif