feat: 添加实时图像显示菜单
fix: 修改旋转编码器接口中部分拼写错误的问题 pref: 修改zf_common_font.c文件中>字符的图案,方便作为指针显示
This commit is contained in:
69
app/main.c
69
app/main.c
@@ -1,29 +1,29 @@
|
||||
/*********************************************************************************************************************
|
||||
* CH32V307VCT6 Opensourec Library 即(CH32V307VCT6 开源库)是一个基于官方 SDK 接口的第三方开源库
|
||||
* Copyright (c) 2022 SEEKFREE 逐飞科技
|
||||
*
|
||||
* 本文件是 CH32V307VCT6 开源库的一部分
|
||||
*
|
||||
* CH32V307VCT6 开源库 是免费软件
|
||||
* 您可以根据自由软件基金会发布的 GPL(GNU General Public License,即 GNU 通用公共许可证)的条款
|
||||
* 即 GPL 的第 3 版(即 GPL3.0)或(您选择的)任何后来的版本,重新发布和/或修改它
|
||||
*
|
||||
* 本开源库的发布是希望它能发挥作用,但并未对其作任何的保证
|
||||
* 甚至没有隐含的适销性或适合特定用途的保证
|
||||
* 更多细节请参见 GPL
|
||||
*
|
||||
* 您应该在收到本开源库的同时收到一份 GPL 的副本
|
||||
* 如果没有,请参阅<https://www.gnu.org/licenses/>
|
||||
*
|
||||
* 额外注明:
|
||||
* 本开源库使用 GPL3.0 开源许可证协议 以上许可申明为译文版本
|
||||
* 许可申明英文版在 libraries/doc 文件夹下的 GPL3_permission_statement.txt 文件中
|
||||
* 许可证副本在 libraries 文件夹下 即该文件夹下的 LICENSE 文件
|
||||
* 欢迎各位使用并传播本程序 但修改内容时必须保留逐飞科技的版权声明(即本声明)
|
||||
********************************************************************************************************************/
|
||||
* CH32V307VCT6 Opensourec Library 即(CH32V307VCT6 开源库)是一个基于官方 SDK 接口的第三方开源库
|
||||
* Copyright (c) 2022 SEEKFREE 逐飞科技
|
||||
*
|
||||
* 本文件是 CH32V307VCT6 开源库的一部分
|
||||
*
|
||||
* CH32V307VCT6 开源库 是免费软件
|
||||
* 您可以根据自由软件基金会发布的 GPL(GNU General Public License,即 GNU 通用公共许可证)的条款
|
||||
* 即 GPL 的第 3 版(即 GPL3.0)或(您选择的)任何后来的版本,重新发布和/或修改它
|
||||
*
|
||||
* 本开源库的发布是希望它能发挥作用,但并未对其作任何的保证
|
||||
* 甚至没有隐含的适销性或适合特定用途的保证
|
||||
* 更多细节请参见 GPL
|
||||
*
|
||||
* 您应该在收到本开源库的同时收到一份 GPL 的副本
|
||||
* 如果没有,请参阅<https://www.gnu.org/licenses/>
|
||||
*
|
||||
* 额外注明:
|
||||
* 本开源库使用 GPL3.0 开源许可证协议 以上许可申明为译文版本
|
||||
* 许可申明英文版在 libraries/doc 文件夹下的 GPL3_permission_statement.txt 文件中
|
||||
* 许可证副本在 libraries 文件夹下 即该文件夹下的 LICENSE 文件
|
||||
* 欢迎各位使用并传播本程序 但修改内容时必须保留逐飞科技的版权声明(即本声明)
|
||||
********************************************************************************************************************/
|
||||
#include "zf_common_headfile.h"
|
||||
#include "gl_headfile.h"
|
||||
#include "by_pt_button.h"
|
||||
#include "by_rt_button.h"
|
||||
#include "by_fan_control.h"
|
||||
#include "cw_servo.h"
|
||||
#include "./page/cw_page.h"
|
||||
@@ -71,6 +71,8 @@ enum track_type_e track_type = TRACK_RIGHT;
|
||||
|
||||
int frame_count = 0;
|
||||
|
||||
uint16_t pwm_cnt = 500;
|
||||
|
||||
void img_processing();
|
||||
void get_corners();
|
||||
|
||||
@@ -79,19 +81,36 @@ int main(void)
|
||||
clock_init(SYSTEM_CLOCK_120M);
|
||||
debug_init();
|
||||
mt9v03x_init();
|
||||
pwm_init(TIM2_PWM_MAP0_CH1_A0, 50, 1000);
|
||||
pwm_init(TIM2_PWM_MAP0_CH2_A1, 50, 1000);
|
||||
ips200_init(IPS200_TYPE_SPI);
|
||||
by_gpio_init();
|
||||
by_exit_init();
|
||||
by_pwm_init();
|
||||
cw_servo_init();
|
||||
// cw_servo_init();
|
||||
// while (imu660ra_init())
|
||||
// ;
|
||||
|
||||
Page_Init();
|
||||
|
||||
while (1) {
|
||||
// ips200_show_uint(0, 0, pwm_cnt, 6);
|
||||
// uint8_t temp_status = by_get_rb_status();
|
||||
// if (2 == temp_status) {
|
||||
// pwm_cnt += 50;
|
||||
// } else if (3 == temp_status) {
|
||||
// pwm_cnt -= 50;
|
||||
// }
|
||||
|
||||
// pwm_cnt = (uint16_t)clip(pwm_cnt, 500, 1000);
|
||||
// by_pwm_update_duty(4000);
|
||||
// pwm_set_duty(TIM2_PWM_MAP0_CH1_A0, pwm_cnt);
|
||||
// pwm_set_duty(TIM2_PWM_MAP0_CH2_A1, pwm_cnt);
|
||||
|
||||
// by_pwm_update_duty(pwm_cnt);
|
||||
|
||||
Page_Run();
|
||||
|
||||
|
||||
if (mt9v03x_finish_flag) {
|
||||
memcpy(mt9v03x_image_copy[0], mt9v03x_image[0], (sizeof(mt9v03x_image_copy) / sizeof(uint8_t)));
|
||||
mt9v03x_finish_flag = 0;
|
||||
|
||||
Reference in New Issue
Block a user