mirror of
https://github.com/pine64/blisp.git
synced 2024-12-23 23:10:21 +00:00
11 lines
262 B
C
11 lines
262 B
C
// SPDX-License-Identifier: MIT
|
|
#include "blisp.h"
|
|
|
|
struct blisp_chip blisp_chip_bl70x = {
|
|
.type = BLISP_CHIP_BL70X,
|
|
.type_str = "bl70x",
|
|
.usb_isp_available = true,
|
|
.default_eflash_loader_xtal = "32m",
|
|
.handshake_byte_multiplier = 0.003f,
|
|
};
|