Initial support for BL808

Not working yet
This commit is contained in:
Marek Kraus
2022-11-10 21:36:00 +01:00
parent cae1bf0202
commit 738626e67e
5 changed files with 36 additions and 6 deletions
+3 -1
View File
@@ -6,7 +6,8 @@
enum blisp_chip_type {
BLISP_CHIP_BL60X,
BLISP_CHIP_BL70X
BLISP_CHIP_BL70X,
BLISP_CHIP_BL808
};
struct blisp_chip { // TODO: Move elsewhere?
@@ -19,5 +20,6 @@ struct blisp_chip { // TODO: Move elsewhere?
extern struct blisp_chip blisp_chip_bl60x;
extern struct blisp_chip blisp_chip_bl70x;
extern struct blisp_chip blisp_chip_bl808;
#endif