f041c0ea08
main.c 添加自动运行 hex_file 增加线程堆栈 uart_dma_sample.c 添加485测试函数及发送函数 board.h 添加485对应的uart6
135 lines
3.2 KiB
C
135 lines
3.2 KiB
C
/*
|
||
* Copyright (c) 2006-2023, RT-Thread Development Team
|
||
*
|
||
* SPDX-License-Identifier: Apache-2.0
|
||
*
|
||
* Change Logs:
|
||
* Date Author Notes
|
||
* 2023-04-27 RT-Thread first version
|
||
*/
|
||
|
||
#include <rtthread.h>
|
||
|
||
#define LOG_TAG "main"
|
||
#define LOG_LVL LOG_LVL_DBG
|
||
#include <ulog.h>
|
||
#include <board.h>
|
||
#include <ttmsg/ttmsg.h>
|
||
//#include <cfg.h>
|
||
|
||
|
||
|
||
|
||
|
||
int main(void)
|
||
{
|
||
|
||
//
|
||
// clock_information();
|
||
|
||
// #define LED_HEART GET_PIN(E,3)
|
||
/* 设置PIN脚模式为输出 */
|
||
rt_pin_mode(LED_HEART, PIN_MODE_OUTPUT);
|
||
rt_pin_mode(LED_HEART_DEBUG, PIN_MODE_OUTPUT);
|
||
rt_pin_mode(ETH_RESET_PIN, PIN_MODE_OUTPUT);
|
||
|
||
rt_pin_mode(TT_EN, PIN_MODE_OUTPUT);
|
||
|
||
rt_pin_mode(TR485_RE, PIN_MODE_OUTPUT);
|
||
rt_pin_write(TR485_RE, PIN_LOW);
|
||
// rt_pin_write(ETH_RESET_PIN, PIN_LOW);//关闭ETH
|
||
// rt_pin_write(TT_EN, PIN_HIGH);//关闭TT
|
||
|
||
|
||
|
||
|
||
while (1)
|
||
{
|
||
/* 拉低PIN脚 */
|
||
rt_pin_write(LED_HEART, PIN_LOW);
|
||
rt_pin_write(LED_HEART_DEBUG, PIN_HIGH);
|
||
/* 延时1ms,省电 */
|
||
rt_thread_mdelay(10); //去掉延时,共用print替换
|
||
// rt_kprintf("Heartbeat.\n");
|
||
|
||
/* 拉高PIN脚 */
|
||
rt_pin_write(LED_HEART, PIN_HIGH);
|
||
rt_pin_write(LED_HEART_DEBUG, PIN_LOW);
|
||
rt_thread_mdelay(1000);
|
||
|
||
|
||
// rt_device_control(wdg_dev, RT_DEVICE_CTRL_WDT_KEEPALIVE, NULL);
|
||
/* 从消息队列中读取消息*/
|
||
// rt_err_t result = rt_mq_recv(&update_cfg, &msg, sizeof(msg), RT_WAITING_NO);
|
||
// if (result == RT_EOK)
|
||
// {
|
||
// LOG_I("updatecfg:%10s -->%s", msg.key, msg.value);
|
||
// }
|
||
// rt_thread_mdelay(1000);
|
||
|
||
}
|
||
|
||
return RT_EOK;
|
||
}
|
||
//fastlz_test -c demo.bin f.bin
|
||
#ifdef DEMO
|
||
void pfdemo(void)
|
||
{
|
||
// #define cmb_println(...) rt_kprintf(__VA_ARGS__);rt_kprintf("\r\n");
|
||
// char *f = "1023_05_19_15_29_59_254.txt";
|
||
// char *f = "2023_05_19_15_29_59_255.txt";
|
||
char *f = "2023_06_16_10_28_00_123.bin";
|
||
static rt_uint8_t d[10][200] = { };
|
||
static rt_uint8_t s[10] = { };
|
||
rt_uint8_t len = 0;
|
||
LOG_D("%p--%p",d,s);
|
||
LOG_I("pack %s ...",f);
|
||
len = pack_File(f, 0, d, s);
|
||
rt_kprintf("len is %d\n", len);
|
||
if (len)
|
||
{
|
||
for (size_t var = 0; var < len; var++) {
|
||
LOG_HEX("d",27,d[var],s[var]);
|
||
}
|
||
// LOG_HEX("pkdata:",27,d[0],s[0]);
|
||
// LOG_D("%p--%p",d,s);
|
||
// LOG_D("%d--%d--%02X",len,s[0],d[0][0]);
|
||
LOG_I("Done.");
|
||
}
|
||
}
|
||
void pp(int argc, char **argv)
|
||
{
|
||
// if (argc == 2)
|
||
{
|
||
/* 创建线程 */
|
||
rt_thread_t thread = rt_thread_create("pmsg2", pfdemo, RT_NULL, 1024 * 10, 25, 10);
|
||
/* 创建成功则启动线程 */
|
||
if (thread != RT_NULL)
|
||
{
|
||
rt_thread_startup(thread);
|
||
// rt_kprintf("done");
|
||
}
|
||
else
|
||
{
|
||
LOG_E("thread 'pmsg' create failure.");
|
||
return RT_ERROR;
|
||
}
|
||
}
|
||
}
|
||
|
||
MSH_CMD_EXPORT(pp, 打包文件。);
|
||
#endif
|
||
|
||
|
||
INIT_APP_EXPORT(main);
|
||
extern int rt_hw_stm32_eth_init(void);
|
||
MSH_CMD_EXPORT(rt_hw_stm32_eth_init, 初始化网络。);
|
||
|
||
void show_version(void)
|
||
{
|
||
rt_kprintf("SW Version: %s\n","1.3");
|
||
}
|
||
|
||
MSH_CMD_EXPORT(show_version,显示版本号);
|
||
INIT_COMPONENT_EXPORT(show_version);
|