* fix mbedtls bad pointer in function call (prototype mismatch) * fix issue with weak families functions implemented in static library, it will never be linked. fixed by redefining prototypes inside families * [ln882x] add support for lightning ln882x & ln882h families * add i2c (wire) support * add analog (adc) support * add watchdog support * [ln882x] changed default uart 0/1 pins; added board wl2s * [ln882x] fix IRQ & ADC pins * [ln882x] boards cosmetic * [ln882x] wifi sta use otp mac addr by default; re-enabled wifi powersave mode * [ln882x] clang-format clean code * [ln882x] clang-format clean code * Update families.json * Apply suggestions from code review * [ln882x] reformat json board files * [ln882x] os_queue cleanup * [ln882x] removed Beken auto-download command * [ln882x] removed personal script file * [ln882x] removed unusefull pi section in debugging.md * [ln882x] removed Arduino.h and changed private I2C definition * [ln882x] updated README.md * [ln882x] changed pin naming scheme to PA/PB * [ln882x] clean code * [ln882x] clean code * [ln882x] add ota image verification * Update push-dev.yml * [ln882x] fix boards ADC missing inputs] * [ln882x] removed reg_xxx fixup files and use include guards instead * [ln882x] cleanup code * [ln882x] cleanup code * [ln882x] fix lt_init weak functions linking * [ln882x] revert lt_api.h modification, fixed with previous commit * [ln882x] setup UF2 firmware for flasher with partitions * [ln882x] update README.md * [ln882x] include ln_wifi.h and ln_serial.h to avoid including bad headers on case insensitive systems * [ln882x] Replace RingBuffer by SerialRingBuffer * [ln882x] clang-format * [ln882x] update README.md * Apply suggestions from code review * Reformat board JSON files * Add mkdocs link redirect * Update ltchiptool to v4.12.0 --------- Co-authored-by: Kuba Szczodrzyński <kuba@szczodrzynski.pl>
59 lines
1.6 KiB
C
59 lines
1.6 KiB
C
/* Copyright (c) Etienne Le Cousin 2024-02-24. */
|
|
|
|
#include <libretiny.h>
|
|
#include <sdk_private.h>
|
|
|
|
extern uint8_t uart_print_port;
|
|
extern Serial_t m_LogSerial;
|
|
|
|
static void lt_init_log(void) {
|
|
// default LT print port
|
|
uart_print_port = LT_UART_DEFAULT_LOGGER;
|
|
// default SDK print port
|
|
serial_init(&m_LogSerial, LT_UART_DEFAULT_PORT, CFG_UART_BAUDRATE_LOG, NULL);
|
|
}
|
|
|
|
void lt_init_family() {
|
|
// 0. check reboot cause
|
|
ln_chip_get_reboot_cause();
|
|
|
|
// 1. sys clock,interrupt
|
|
SetSysClock();
|
|
set_interrupt_priority();
|
|
switch_global_interrupt(HAL_ENABLE);
|
|
ln_runtime_measure_init();
|
|
|
|
// 2. register os heap mem
|
|
OS_DefineHeapRegions();
|
|
|
|
// 3. log init
|
|
lt_init_log();
|
|
|
|
cm_backtrace_init("LibreTiny - LN882H", "HW_V1.0", "SW_V1.0");
|
|
|
|
if (NVDS_ERR_OK != ln_nvds_init(FLASH_NVDS_OFFSET)) {
|
|
LT_E("NVDS init failed!");
|
|
}
|
|
|
|
if (KV_ERR_NONE != ln_kv_port_init(FLASH_KV_OFFSET, (FLASH_KV_OFFSET + FLASH_KV_LENGTH))) {
|
|
LT_E("KV init failed!");
|
|
}
|
|
|
|
// init system parameter
|
|
sysparam_integrity_check_all();
|
|
|
|
ln_pm_sleep_mode_set(ACTIVE);
|
|
// ln_pm_always_clk_disable_select(CLK_G_I2S | CLK_G_WS2811 | CLK_G_SDIO);
|
|
/*ln_pm_always_clk_disable_select(CLK_G_I2S | CLK_G_WS2811 | CLK_G_SDIO | CLK_G_AES);
|
|
ln_pm_lightsleep_clk_disable_select(CLK_G_GPIOA | CLK_G_GPIOB | CLK_G_SPI0 | CLK_G_SPI1 | CLK_G_I2C0 |
|
|
CLK_G_UART1 | CLK_G_UART2 | CLK_G_WDT | CLK_G_TIM1 | CLK_G_TIM2 | CLK_G_MAC |
|
|
CLK_G_DMA | CLK_G_RF | CLK_G_ADV_TIMER| CLK_G_TRNG);*/
|
|
}
|
|
|
|
void lt_init_arduino() {
|
|
#if LT_AUTO_DOWNLOAD_REBOOT && LT_ARD_HAS_SERIAL && LT_HW_UART0
|
|
// initialize auto-download-reboot parser
|
|
Serial0.begin(115200);
|
|
#endif
|
|
}
|