mirror of
https://github.com/eddyem/stm32samples.git
synced 2025-12-06 02:35:23 +03:00
114 lines
3.4 KiB
C
114 lines
3.4 KiB
C
/*
|
|
* This file is part of the fx3u project.
|
|
* Copyright 2024 Edward V. Emelianov <edward.emelianoff@gmail.com>.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "adc.h"
|
|
#include "can.h"
|
|
#include "canproto.h"
|
|
#include "flash.h"
|
|
#include "hardware.h"
|
|
#include "modbusproto.h"
|
|
#include "modbusrtu.h"
|
|
#include "proto.h"
|
|
#include "strfunc.h"
|
|
|
|
volatile uint32_t Tms = 0;
|
|
|
|
/* Called when systick fires */
|
|
void sys_tick_handler(void){
|
|
++Tms;
|
|
}
|
|
|
|
TRUE_INLINE void parsemodbus(){
|
|
if(the_conf.modbusID != MODBUS_MASTER_ID){ // slave
|
|
modbus_request req;
|
|
if(1 == modbus_get_request(&req))
|
|
parse_modbus_request(&req);
|
|
}else{ // master
|
|
modbus_response res;
|
|
if(1 == modbus_get_response(&res))
|
|
parse_modbus_response(&res);
|
|
}
|
|
}
|
|
|
|
int main(void){
|
|
uint32_t lastT = 0;
|
|
CAN_message *can_mesg;
|
|
StartHSE();
|
|
SysTick_Config(72000);
|
|
flashstorage_init();
|
|
gpio_setup(); // should be run before other peripherial setup
|
|
adc_setup();
|
|
usart_setup(the_conf.usartspeed);
|
|
CAN_setup(the_conf.CANspeed);
|
|
modbus_setup(the_conf.modbusspeed);
|
|
|
|
#ifndef EBUG
|
|
iwdg_setup();
|
|
#endif
|
|
usart_send("START\n");
|
|
if(RCC->CSR & RCC_CSR_IWDGRSTF){ // watchdog reset occured
|
|
usart_send("IWDGRSTF=1\n");
|
|
}
|
|
if(RCC->CSR & RCC_CSR_SFTRSTF){ // software reset occured
|
|
usart_send("SFTRSTF=1\n");
|
|
}
|
|
if(RCC->CSR & RCC_CSR_PORRSTF){ // POR/RDR
|
|
usart_send("PORRSTF=1\n");
|
|
}
|
|
if(RCC->CSR & RCC_CSR_PINRSTF){ // reset by pin NRST
|
|
usart_send("PINRSTF=1\n");
|
|
}
|
|
RCC->CSR |= RCC_CSR_RMVF; // remove reset flags
|
|
while (1){
|
|
IWDG->KR = IWDG_REFRESH; // refresh watchdog
|
|
if(Tms - lastT > 499){ // throw out short messages twice per second
|
|
usart_transmit();
|
|
lastT = Tms;
|
|
}
|
|
proc_esw();
|
|
CAN_proc();
|
|
while((can_mesg = CAN_messagebuf_pop())){
|
|
DBG("got CAN message\n");
|
|
IWDG->KR = IWDG_REFRESH;
|
|
// run command for my or broadcast ID
|
|
if(can_mesg->ID == the_conf.CANIDin || can_mesg->ID == 0)
|
|
parseCANcommand(can_mesg);
|
|
if(flags.can_monitor){
|
|
lastT = Tms;
|
|
if(!lastT) lastT = 1;
|
|
uint8_t len = can_mesg->length;
|
|
printu(Tms);
|
|
usart_send(" #");
|
|
printuhex(can_mesg->ID);
|
|
for(uint8_t ctr = 0; ctr < len; ++ctr){
|
|
usart_putchar(' ');
|
|
printuhex(can_mesg->data[ctr]);
|
|
}
|
|
usart_putchar('\n');
|
|
}
|
|
}
|
|
char *str;
|
|
int g = usart_getline(&str);
|
|
if(g < 0) usart_send("USART IN buffer overflow!\n");
|
|
else if(g > 0) cmd_parser(str);
|
|
parsemodbus();
|
|
}
|
|
return 0;
|
|
}
|
|
|