Add initial support for BL60X

This commit is contained in:
Marek Kraus
2022-11-08 22:06:14 +01:00
parent d2f13de709
commit 8c3cc0b017
7 changed files with 56 additions and 17 deletions
+9
View File
@@ -0,0 +1,9 @@
#include "blisp.h"
struct blisp_chip blisp_chip_bl60x = {
.type = BLISP_CHIP_BL60X,
.type_str = "bl60x",
.usb_isp_available = false,
.default_eflash_loader_xtal = "40m",
.handshake_byte_multiplier = 0.006f,
};
+3 -1
View File
@@ -3,5 +3,7 @@
struct blisp_chip blisp_chip_bl70x = {
.type = BLISP_CHIP_BL70X,
.type_str = "bl70x",
.usb_isp_available = true
.usb_isp_available = true,
.default_eflash_loader_xtal = "32m",
.handshake_byte_multiplier = 0.003f,
};