blisp/lib/chip/blisp_chip_bl70x.c

12 lines
280 B
C
Raw Normal View History

2022-11-30 12:17:30 +00:00
// SPDX-License-Identifier: MIT
2022-09-25 08:58:59 +00:00
#include "blisp.h"
struct blisp_chip blisp_chip_bl70x = {
.type = BLISP_CHIP_BL70X,
2022-10-05 09:35:44 +00:00
.type_str = "bl70x",
2022-11-08 21:06:14 +00:00
.usb_isp_available = true,
.default_xtal = "32m",
2022-11-08 21:06:14 +00:00
.handshake_byte_multiplier = 0.003f,
.needs_eflash_loader = true
2022-09-25 08:58:59 +00:00
};