mirror of
https://github.com/pine64/blisp.git
synced 2024-12-23 15:00:13 +00:00
12 lines
281 B
C
12 lines
281 B
C
// SPDX-License-Identifier: MIT
|
|
#include "blisp.h"
|
|
|
|
struct blisp_chip blisp_chip_bl61x = {
|
|
.type = BLISP_CHIP_BL61X,
|
|
.type_str = "bl808",
|
|
.usb_isp_available = true,
|
|
.default_xtal = "-", // ?
|
|
.handshake_byte_multiplier = 0.003f,
|
|
.get_eflash_loader = NULL
|
|
};
|