2023-01-07 15:57:45 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#include "blisp.h"
|
2023-11-28 08:53:07 +00:00
|
|
|
#include <stddef.h>
|
2023-01-07 15:57:45 +00:00
|
|
|
|
|
|
|
struct blisp_chip blisp_chip_bl808 = {
|
|
|
|
.type = BLISP_CHIP_BL808,
|
|
|
|
.type_str = "bl808",
|
|
|
|
.usb_isp_available = true, // TODO: Only for BL808D :-(
|
2023-11-28 08:53:07 +00:00
|
|
|
.default_xtal = "-", // XXX: bfl software marks this as "Auto (0x07)"
|
2022-11-10 20:36:00 +00:00
|
|
|
.handshake_byte_multiplier = 0.006f,
|
2023-11-28 08:53:07 +00:00
|
|
|
.load_eflash_loader = NULL
|
2023-01-07 15:57:45 +00:00
|
|
|
};
|