spark_abacus/main.c

282 lines
10 KiB
C
Raw Normal View History

2016-01-17 14:54:54 +01:00
/* 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/>.
*
*/
2016-08-14 21:04:08 +02:00
/** STM32F1 example
2016-08-14 21:02:38 +02:00
* @file main.c
* @author King Kévin <kingkevin@cuvoodoo.info>
* @date 2016
*/
2016-01-17 14:54:54 +01:00
/* standard libraries */
#include <stdint.h> // standard integer types
#include <stdio.h> // standard I/O facilities
#include <stdlib.h> // standard utilities
#include <unistd.h> // standard streams
2016-08-14 21:02:38 +02:00
#include <string.h> // string utilities
#include <math.h> // mathematical utilities
2016-01-17 14:54:54 +01:00
/* STM32 (including CM3) libraries */
#include <libopencm3/stm32/rcc.h> // real-time control clock library
#include <libopencm3/stm32/gpio.h> // general purpose input output library
#include <libopencm3/cm3/scb.h> // vector table definition
2016-01-18 16:23:35 +01:00
#include <libopencmsis/core_cm3.h> // Cortex M3 utilities
2016-01-29 11:25:30 +01:00
#include <libopencm3/cm3/nvic.h> // interrupt utilities
#include <libopencm3/stm32/exti.h> // external interrupt utilities
2016-08-14 21:02:38 +02:00
#include <libopencm3/stm32/rtc.h> // real time clock utilities
2016-01-17 14:54:54 +01:00
/* own libraries */
#include "global.h" // board definitions
2016-01-17 14:54:54 +01:00
#include "usart.h" // USART utilities
2016-01-18 16:23:35 +01:00
#include "usb_cdcacm.h" // USB CDC ACM utilities
2016-09-11 17:21:33 +02:00
#include "sensor_pzem.h" // PZEM electricity meter utilities
2016-09-13 22:42:56 +02:00
#include "sensor_sdm120.h" // SDM120 electricity meter utilities
2016-01-17 14:54:54 +01:00
2016-08-14 21:02:38 +02:00
/** @defgroup main_flags flag set in interrupts to be processed in main task
* @{
*/
volatile bool rtc_internal_tick_flag = false; /**< flag set when internal RTC ticked */
/** @} */
2016-01-17 14:54:54 +01:00
int _write(int file, char *ptr, int len)
{
2016-08-14 21:02:38 +02:00
int i; // how much data has been sent
static char newline = 0; // what newline has been sent
2016-01-17 14:54:54 +01:00
if (file == STDOUT_FILENO || file == STDERR_FILENO) {
for (i = 0; i < len; i++) {
2016-08-14 21:02:38 +02:00
if (ptr[i] == '\r' || ptr[i] == '\n') { // send CR+LF newline for most carriage return and line feed combination
if (newline==0 || (newline==ptr[i])) { // newline has already been detected
usart_putchar_nonblocking('\r'); // send newline over USART
usart_putchar_nonblocking('\n'); // send newline over USART
cdcacm_putchar('\r'); // send newline over USB
cdcacm_putchar('\n'); // send newline over USB
newline = ptr[i]; // remember the newline
}
if (ptr[i] == '\n') { // line feed are always considered to end a line (the LF+CR combination is not supported to better support the others)
newline = 0; // clear new line
}
} else { // non-newline character
usart_putchar_nonblocking(ptr[i]); // send byte over USART
cdcacm_putchar(ptr[i]); // send byte over USB
newline = 0; // clear new line
2016-01-17 14:54:54 +01:00
}
}
return i;
}
return -1;
}
/** user input command */
char command[32] = {0};
/** user input command index */
uint8_t command_i = 0;
2016-01-17 14:54:54 +01:00
2016-08-14 21:02:38 +02:00
/** process user command
* @param[in] str user command string (\0 ended)
*/
static void process_command(char* str)
2016-01-17 14:54:54 +01:00
{
2016-08-14 21:02:38 +02:00
// split command
const char* delimiter = " ";
char* word = strtok(str,delimiter);
if (!word) {
goto error;
}
// parse command
if (0==strcmp(word,"help")) {
printf("available commands:\n");
printf("led [on|off|toggle]\n");
printf("time [HH:MM:SS]\n");
} else if (0==strcmp(word,"led")) {
word = strtok(NULL,delimiter);
if (!word) {
goto error;
} else if (0==strcmp(word,"on")) {
led_on(); // switch LED on
printf("LED switched on\n"); // notify user
} else if (0==strcmp(word,"off")) {
led_off(); // switch LED off
printf("LED switched off\n"); // notify user
} else if (0==strcmp(word,"toggle")) {
led_toggle(); // toggle LED
printf("LED toggled\n"); // notify user
} else {
goto error;
}
} else if (0==strcmp(word,"time")) {
word = strtok(NULL,delimiter);
if (!word) {
2016-08-28 23:15:45 +02:00
printf("current time: %02lu:%02lu:%02lu\n", rtc_get_counter_val()/(60*60), (rtc_get_counter_val()%(60*60))/60, (rtc_get_counter_val()%60)); // get and print time from internal RTC
2016-08-14 21:02:38 +02:00
} else if (strlen(word)!=8 || word[0]<'0' || word[0]>'2' || word[1]<'0' || word[1]>'9' || word[3]<'0' || word[3]>'5' || word[4]<'0' || word[4]>'9' || word[6]<'0' || word[6]>'5' || word[7]<'0' || word[7]>'9') { // time format is incorrect
goto error;
} else {
rtc_set_counter_val(((word[0]-'0')*10+(word[1]-'0')*1)*(60*60)+((word[3]-'0')*10+(word[4]-'0')*1)*60+((word[6]-'0')*10+(word[7]-'0')*1)); // set time in internal RTC counter
printf("time set\n");
}
} else {
goto error;
}
return; // command successfully processed
error:
printf("command not recognized. enter help to list commands\n");
2016-09-04 14:48:40 +02:00
return;
2016-01-17 14:54:54 +01:00
}
2016-08-14 21:02:38 +02:00
/** program entry point
* this is the firmware function started by the micro-controller
*/
2016-08-20 23:27:01 +02:00
void main(void);
void main(void)
{
2016-01-29 00:24:49 +01:00
rcc_clock_setup_in_hse_8mhz_out_72mhz(); // use 8 MHz high speed external clock to generate 72 MHz internal clock
2016-08-14 21:02:38 +02:00
// setup board
board_setup();
2016-08-14 21:02:38 +02:00
// setup USART and USB for user communication
2016-01-29 11:25:30 +01:00
usart_setup(); // setup USART (for printing)
2016-08-14 21:02:38 +02:00
cdcacm_setup(); // setup USB CDC ACM (for printing)
2016-08-20 23:27:01 +02:00
setbuf(stdout, NULL); // set standard out buffer to NULL to immediately print
setbuf(stderr, NULL); // set standard error buffer to NULL to immediately print
2016-01-29 00:24:49 +01:00
2016-08-14 21:02:38 +02:00
// minimal setup ready
printf("welcome to the STM32F1 CuVoodoo example code\n"); // print welcome message
2016-01-29 00:24:49 +01:00
2016-08-14 21:02:38 +02:00
// setup RTC
printf("setup internal RTC: ");
rtc_auto_awake(RCC_LSE, 32768-1); // ensure internal RTC is on, uses the 32.678 kHz LSE, and the prescale is set to our tick speed, else update backup registers accordingly (power off the micro-controller for the change to take effect)
rtc_interrupt_enable(RTC_SEC); // enable RTC interrupt on "seconds"
nvic_enable_irq(NVIC_RTC_IRQ); // allow the RTC to interrupt
printf("OK\n");
// get date and time
uint32_t ticks_time = 0;
ticks_time = rtc_get_counter_val(); // get time/date from internal RTC
2016-08-28 23:15:45 +02:00
printf("current time: %02lu:%02lu:%02lu\n", ticks_time/(60*60), (ticks_time%(60*60))/60, (ticks_time%60)); // display time
2016-01-18 16:23:35 +01:00
2016-09-11 17:21:33 +02:00
// setup PZEM electricity meter
printf("setup PZEM-004 electricity meter: ");
sensor_pzem_setup(); // setup PZEM electricity meter
printf("OK\n");
2016-09-13 22:42:56 +02:00
//sensor_pzem_measurement_request(0xc0a80101, SENSOR_PZEM_VOLTAGE);
2016-09-11 17:21:33 +02:00
2016-09-13 22:42:56 +02:00
// setup SDM120 electricity meter
printf("setup SDM120 electricity meter: ");
sensor_sdm120_setup(); // setup SDM120 electricity meter
printf("OK\n");
sensor_sdm120_measurement_request(1,SENSOR_SDM120_VOLTAGE);
2016-09-11 17:21:33 +02:00
2016-08-14 21:02:38 +02:00
// main loop
printf("command input: ready\n");
bool action = false; // if an action has been performed don't go to sleep
button_flag = false; // reset button flag
2016-08-14 21:02:38 +02:00
char c = ' '; // to store received character
bool char_flag = false; // a new character has been received
2016-01-29 00:24:49 +01:00
while (true) { // infinite loop
2016-08-14 21:02:38 +02:00
while (usart_received) { // data received over UART
action = true; // action has been performed
2016-01-29 00:24:49 +01:00
led_toggle(); // toggle LED
2016-08-14 21:02:38 +02:00
c = usart_getchar(); // store receive character
char_flag = true; // notify character has been received
}
2016-08-14 21:02:38 +02:00
while (cdcacm_received) { // data received over USB
action = true; // action has been performed
2016-01-29 00:24:49 +01:00
led_toggle(); // toggle LED
2016-08-14 21:02:38 +02:00
c = cdcacm_getchar(); // store receive character
char_flag = true; // notify character has been received
2016-01-18 16:23:35 +01:00
}
2016-08-14 21:02:38 +02:00
while (char_flag) { // user data received
char_flag = false; // reset flag
action = true; // action has been performed
2016-08-14 21:02:38 +02:00
printf("%c",c); // echo receive character
if (c=='\r' || c=='\n') { // end of command received
if (command_i>0) { // there is a command to process
command[command_i] = 0; // end string
command_i = 0; // prepare for next command
process_command(command); // process user command
}
} else { // user command input
command[command_i] = c; // save command input
if (command_i<LENGTH(command)-2) { // verify if there is place to save next character
command_i++; // save next character
}
}
}
2016-09-11 17:21:33 +02:00
while (sensor_pzem_measurement_received) { // measurement from electricity meter received
struct sensor_pzem_measurement_t measurement = sensor_pzem_measurement_decode(); // decode measurement
if (measurement.valid) { // only show valid measurement
switch (measurement.type) {
2016-09-12 21:42:37 +02:00
case SENSOR_PZEM_VOLTAGE:
2016-09-11 17:21:33 +02:00
printf("voltage: %.01f V\n", measurement.value.voltage);
break;
2016-09-12 21:42:37 +02:00
case SENSOR_PZEM_CURRENT:
2016-09-11 17:21:33 +02:00
printf("current: %.02f A\n", measurement.value.current);
break;
2016-09-12 21:42:37 +02:00
case SENSOR_PZEM_POWER:
2016-09-11 17:21:33 +02:00
printf("power: %.00f W\n", measurement.value.power);
break;
2016-09-12 21:42:37 +02:00
case SENSOR_PZEM_ENERGY:
2016-09-11 17:21:33 +02:00
printf("energy: %lu Wh\n", measurement.value.energy);
break;
default:
break;
}
}
}
2016-09-13 22:42:56 +02:00
while (sensor_sdm120_measurement_received) { // measurement from electricity meter received
float measurement = sensor_sdm120_measurement_decode(); // decode measurement
2016-09-14 10:02:38 +02:00
if (isnan(measurement)) {
2016-09-13 22:42:56 +02:00
printf("error in measurement response\n");
} else {
2016-09-14 10:02:38 +02:00
printf("measurement: %.01f\n",measurement);
2016-09-13 22:42:56 +02:00
}
}
2016-08-14 21:02:38 +02:00
while (button_flag) { // user pressed button
action = true; // action has been performed
printf("button pressed\n");
led_toggle(); // toggle LED
2016-08-14 21:02:38 +02:00
for (uint32_t i=0; i<1000000; i++) { // wait a bit to remove noise and double trigger
__asm__("nop");
}
button_flag = false; // reset flag
}
2016-08-14 21:02:38 +02:00
while (rtc_internal_tick_flag) { // the internal RTC ticked
rtc_internal_tick_flag = false; // reset flag
2016-09-13 22:42:56 +02:00
led_toggle(); // toggle LED (good to indicate if main function is stuck
2016-08-14 21:02:38 +02:00
ticks_time = rtc_get_counter_val(); // copy time from internal RTC for processing
action = true; // action has been performed
2016-08-20 23:32:08 +02:00
if (ticks_time!=0 && (ticks_time%(24*60*60))==0) { // one day passed
2016-08-18 11:54:24 +02:00
rtc_set_counter_val(0); // reset counter
}
if ((ticks_time%(60))==0) { // one minute passed
2016-08-28 23:15:45 +02:00
printf("%02lu:%02lu:%02lu\n", ticks_time/(60*60), (ticks_time%(60*60))/60, (ticks_time%60)); // display external time
2016-08-14 21:02:38 +02:00
}
}
if (action) { // go to sleep if nothing had to be done, else recheck for activity
action = false;
} else {
__WFI(); // go to sleep
}
2016-01-17 14:54:54 +01:00
}
}
2016-01-29 11:25:30 +01:00
2016-08-14 21:02:38 +02:00
/** @brief interrupt service routine called when tick passed on RTC */
void rtc_isr(void)
{
rtc_clear_flag(RTC_SEC); // clear flag
rtc_internal_tick_flag = true; // notify to show new time
}