mirror of
https://github.com/eddyem/stm32samples.git
synced 2026-03-20 00:30:57 +03:00
67 lines
2.0 KiB
C
67 lines
2.0 KiB
C
/*
|
|
* This file is part of the blink project.
|
|
* Copyright 2023 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 "stm32g0.h"
|
|
#include "hardware.h"
|
|
#include "usart.h"
|
|
|
|
volatile uint32_t Tms = 0; // milliseconds
|
|
|
|
/* Called when systick fires */
|
|
void sys_tick_handler(void){
|
|
++Tms;
|
|
}
|
|
|
|
/*
|
|
* Set up timer to fire every x milliseconds
|
|
*/
|
|
static void systick_setup(uint32_t xms){ // xms < 2098!!!
|
|
Tms = 0;
|
|
static uint32_t curms = 0;
|
|
if(curms == xms) return;
|
|
// this function also clears counter so it starts right away
|
|
SysTick_Config(SysFreq / 8000 * xms); // arg should be < 0xffffff, so ms should be < 2098
|
|
curms = xms;
|
|
}
|
|
|
|
int main(void){
|
|
StartHSE();
|
|
gpio_setup();
|
|
systick_setup(1); // run each 1ms
|
|
usart_setup(115200);
|
|
uint32_t M = 0;
|
|
//int pressed = 0;
|
|
/* Do nothing in main loop */
|
|
while(1){
|
|
if(Tms - M > 499){
|
|
LED_TOGGLE();
|
|
M = Tms;
|
|
}
|
|
//if(KEY_PRESSED()){ // key pressed - 'sos'
|
|
USART_flags_t f = usart_process();
|
|
if(f.rxovrfl) usart_sendstr("Rx overflow!\n");
|
|
if(f.txerr) usart_sendstr("Tx error!\n");
|
|
char *got = usart_getline();
|
|
if(got){
|
|
usart_sendstr("You sent:\n");
|
|
usart_sendstr(got);
|
|
usart_sendstr("\n=======================\n");
|
|
}
|
|
}
|
|
}
|