2023-12-11 21:45:06 +08:00
|
|
|
|
/*********************************************************************************************************************
|
2023-12-24 22:21:15 +08:00
|
|
|
|
* CH32V307VCT6 Opensourec Library ????CH32V307VCT6 ???????????????? SDK ??????????????
|
|
|
|
|
|
* Copyright (c) 2022 SEEKFREE ?????
|
2023-12-16 11:31:25 +08:00
|
|
|
|
*
|
2023-12-24 22:21:15 +08:00
|
|
|
|
* ??????? CH32V307VCT6 ???????????
|
2023-12-16 11:31:25 +08:00
|
|
|
|
*
|
2023-12-24 22:21:15 +08:00
|
|
|
|
* CH32V307VCT6 ????? ?????????
|
|
|
|
|
|
* ?????????????????????????? GPL??GNU General Public License???? GNU ??<EFBFBD><EFBFBD><EFBFBD><EFBFBD>???????????????
|
|
|
|
|
|
* ?? GPL ??? 3 ?<EFBFBD><EFBFBD><EFBFBD><EFBFBD>? GPL3.0????????????<EFBFBD>ʦ<EFBFBD><EFBFBD><EFBFBD>????<EFBFBD><EFBFBD><EFBFBD><EFBFBD>????<EFBFBD><EFBFBD><EFBFBD><EFBFBD>????/???????
|
2023-12-16 11:31:25 +08:00
|
|
|
|
*
|
2023-12-24 22:21:15 +08:00
|
|
|
|
* ????????????????????????????????<EFBFBD><EFBFBD><EFBFBD><EFBFBD>??????<EFBFBD>ʦ<EFBFBD><EFBFBD><EFBFBD>??
|
|
|
|
|
|
* ?????????????????????????????????
|
|
|
|
|
|
* ?????????<EFBFBD><EFBFBD><EFBFBD><EFBFBD>GPL
|
2023-12-16 11:31:25 +08:00
|
|
|
|
*
|
2023-12-24 22:21:15 +08:00
|
|
|
|
* ?????????????????????????? GPL ?????
|
|
|
|
|
|
* ?????<EFBFBD><EFBFBD><EFBFBD><EFBFBD>?????<https://www.gnu.org/licenses/>
|
2023-12-16 11:31:25 +08:00
|
|
|
|
*
|
2023-12-24 22:21:15 +08:00
|
|
|
|
* ?????????
|
|
|
|
|
|
* ?????????? GPL3.0 ????????<EFBFBD><EFBFBD><EFBFBD><EFBFBD>? ?????????????????<EFBFBD><EFBFBD>
|
|
|
|
|
|
* ?????????????? libraries/doc ???????? GPL3_permission_statement.txt ?????
|
|
|
|
|
|
* ??????????? libraries ??????? ???????????? LICENSE ???
|
|
|
|
|
|
* ?????<EFBFBD><EFBFBD><EFBFBD><EFBFBD>?<EFBFBD><EFBFBD><EFBFBD><EFBFBD>?????????? ?????????????????????????????????????????
|
2023-12-16 11:31:25 +08:00
|
|
|
|
*
|
2023-12-24 22:21:15 +08:00
|
|
|
|
* ??????? main
|
|
|
|
|
|
* ??????? ??????????????
|
|
|
|
|
|
* ?<EFBFBD><EFBFBD><EFBFBD><EFBFBD>?? ?? libraries/doc ??????? version ??? ?<EFBFBD><EFBFBD><EFBFBD><EFBFBD>??
|
|
|
|
|
|
* ???????? MounRiver Studio V1.8.1
|
|
|
|
|
|
* ?????? CH32V307VCT6
|
|
|
|
|
|
* ???????? https://seekfree.taobao.com/
|
2023-12-16 11:31:25 +08:00
|
|
|
|
*
|
2023-12-24 22:21:15 +08:00
|
|
|
|
* ?????
|
|
|
|
|
|
* ???? ???? ???
|
|
|
|
|
|
* 2022-09-15 ?? W first version
|
2023-12-16 11:31:25 +08:00
|
|
|
|
********************************************************************************************************************/
|
2023-12-11 21:45:06 +08:00
|
|
|
|
#include "zf_common_headfile.h"
|
2023-12-17 16:11:35 +08:00
|
|
|
|
#include "gl_headfile.h"
|
2023-12-15 21:42:43 +08:00
|
|
|
|
#include "by_pt_button.h"
|
|
|
|
|
|
#include "by_fan_control.h"
|
2023-12-21 22:33:36 +08:00
|
|
|
|
#include "cw_servo.h"
|
|
|
|
|
|
#include "./page/cw_page.h"
|
|
|
|
|
|
|
2023-12-24 22:21:15 +08:00
|
|
|
|
uint8_t (*Img_Gray)[MT9V03X_W];
|
|
|
|
|
|
// uint8_t *mt9v03x_image_copy[0];
|
|
|
|
|
|
int32_t pts_left[PT_MAXLEN][2];
|
|
|
|
|
|
int32_t pts_right[PT_MAXLEN][2];
|
2023-12-21 22:33:36 +08:00
|
|
|
|
int32_t pts_left_count, pts_right_count;
|
|
|
|
|
|
float pts_inv_l[PT_MAXLEN][2], pts_inv_r[PT_MAXLEN][2];
|
|
|
|
|
|
int32_t pts_inv_l_count, pts_inv_r_count;
|
|
|
|
|
|
float pts_filter_l[PT_MAXLEN][2], pts_filter_r[PT_MAXLEN][2];
|
|
|
|
|
|
int32_t pts_filter_l_count, pts_filter_r_count;
|
|
|
|
|
|
float pts_resample_left[PT_MAXLEN][2], pts_resample_right[PT_MAXLEN][2];
|
|
|
|
|
|
int32_t pts_resample_left_count, pts_resample_right_count;
|
|
|
|
|
|
float mid_left[PT_MAXLEN][2], mid_right[PT_MAXLEN][2];
|
|
|
|
|
|
int32_t mid_left_count, mid_right_count;
|
|
|
|
|
|
|
2023-12-17 16:11:35 +08:00
|
|
|
|
float angle_new_left[PT_MAXLEN];
|
|
|
|
|
|
float angle_new_right[PT_MAXLEN];
|
|
|
|
|
|
int angle_new_left_num, angle_new_right_num;
|
|
|
|
|
|
uint8_t mt9v03x_image_copy[MT9V03X_H][MT9V03X_W];
|
|
|
|
|
|
|
|
|
|
|
|
float angle_left[PT_MAXLEN];
|
|
|
|
|
|
float angle_right[PT_MAXLEN];
|
|
|
|
|
|
int angle_left_num, angle_right_num;
|
|
|
|
|
|
|
|
|
|
|
|
int Lpt0_rpts0s_id, Lpt1_rpts1s_id;
|
|
|
|
|
|
bool Lpt0_found, Lpt1_found;
|
2023-12-21 22:33:36 +08:00
|
|
|
|
int Lpt1[2], Lpt0[2];
|
2023-12-17 16:11:35 +08:00
|
|
|
|
|
|
|
|
|
|
int Lpt_in0_rpts0s_id, Lpt_in1_rpts1s_id;
|
|
|
|
|
|
bool Lpt_in0_found, Lpt_in1_found;
|
|
|
|
|
|
int Lpt_in1[2], Lpt_in0[2];
|
|
|
|
|
|
|
|
|
|
|
|
bool is_straight0, is_straight1;
|
|
|
|
|
|
|
|
|
|
|
|
bool is_turn0, is_turn1;
|
|
|
|
|
|
|
|
|
|
|
|
float rptsn[PT_MAXLEN][2];
|
|
|
|
|
|
int rptsn_num;
|
|
|
|
|
|
float aim_distance;
|
|
|
|
|
|
|
|
|
|
|
|
enum track_type_e track_type = TRACK_RIGHT;
|
|
|
|
|
|
|
|
|
|
|
|
int frame_count = 0;
|
|
|
|
|
|
|
|
|
|
|
|
void img_processing();
|
|
|
|
|
|
void get_corners();
|
2023-12-17 16:23:13 +08:00
|
|
|
|
|
2023-12-16 11:31:25 +08:00
|
|
|
|
int main(void)
|
2023-12-11 21:45:06 +08:00
|
|
|
|
{
|
2023-12-24 22:21:15 +08:00
|
|
|
|
clock_init(SYSTEM_CLOCK_120M);
|
|
|
|
|
|
debug_init();
|
2023-12-11 21:45:06 +08:00
|
|
|
|
mt9v03x_init();
|
2023-12-21 22:33:36 +08:00
|
|
|
|
ips200_init(IPS200_TYPE_SPI);
|
2023-12-13 21:54:20 +08:00
|
|
|
|
by_gpio_init();
|
|
|
|
|
|
by_exit_init();
|
2023-12-15 21:42:43 +08:00
|
|
|
|
by_pwm_init();
|
2023-12-16 11:31:25 +08:00
|
|
|
|
cw_servo_init();
|
2023-12-24 22:21:15 +08:00
|
|
|
|
// while (imu660ra_init())
|
|
|
|
|
|
// ;
|
2023-12-16 11:31:25 +08:00
|
|
|
|
|
2023-12-21 22:33:36 +08:00
|
|
|
|
Page_Init();
|
2023-12-17 16:11:35 +08:00
|
|
|
|
|
2023-12-21 22:33:36 +08:00
|
|
|
|
while (1) {
|
|
|
|
|
|
Page_Run();
|
2023-12-24 22:21:15 +08:00
|
|
|
|
|
2023-12-17 16:11:35 +08:00
|
|
|
|
if (mt9v03x_finish_flag) {
|
2023-12-21 22:33:36 +08:00
|
|
|
|
memcpy(mt9v03x_image_copy[0], mt9v03x_image[0], (sizeof(mt9v03x_image_copy) / sizeof(uint8_t)));
|
2023-12-17 16:11:35 +08:00
|
|
|
|
mt9v03x_finish_flag = 0;
|
|
|
|
|
|
|
|
|
|
|
|
state_type = COMMON_STATE;
|
|
|
|
|
|
img_processing();
|
|
|
|
|
|
get_corners();
|
|
|
|
|
|
aim_distance = COMMON_AIM;
|
|
|
|
|
|
tracking();
|
|
|
|
|
|
ElementJudge();
|
|
|
|
|
|
ElementRun();
|
|
|
|
|
|
MidLineTrack();
|
2023-12-11 21:45:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2023-12-17 16:23:13 +08:00
|
|
|
|
}
|