mirror of
https://github.com/eddyem/mmpp.git
synced 2025-12-06 10:35:16 +03:00
283 lines
7.4 KiB
C
283 lines
7.4 KiB
C
/*
|
|
* geany_encoding=koi8-r
|
|
* proto.c
|
|
*
|
|
* Copyright 2017 Edward V. Emelianov <eddy@sao.ru, 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 2 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, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
#include "stm32f0.h"
|
|
#include "proto.h"
|
|
#include "adc.h"
|
|
#include "flash.h"
|
|
#include "string.h"
|
|
#include "usart.h"
|
|
|
|
#define SENDBUF() do{usart1_send_blocking(gettrbuf()); cleartrbuf();}while(0)
|
|
|
|
static const char *eodata = "DATAEND";
|
|
static const char *badcmd = "BADCMD";
|
|
static const char *allok = "ALL OK";
|
|
static const char *err = "ERR";
|
|
|
|
#define EODATA ((char*)eodata)
|
|
#define BADCMD ((char*)badcmd)
|
|
#define ALLOK ((char*)allok)
|
|
#define ERR ((char*)err)
|
|
|
|
static char *getnum(char *buf, int32_t *N);
|
|
static char *get_something(char *str);
|
|
static char *set_something(char *str);
|
|
static char *get_status();
|
|
static char *get_conf();
|
|
static char *get_raw_adc();
|
|
static char *get_ADCval(char *str);
|
|
static char *setDenEn(uint8_t De, char *str);
|
|
static char *setDevId(char *str);
|
|
static char *setESWthres(char *str);
|
|
static char *get_temper();
|
|
|
|
#define omitwsp(str) do{register char nxt; while((nxt = *str)){if(nxt != ' ' && nxt != '\t') break; else ++str;}}while(0)
|
|
|
|
/**
|
|
* get input buffer `cmdbuf`, parse it and change system state
|
|
* @return message to send
|
|
*/
|
|
char* process_command(char *cmdbuf){
|
|
int32_t num;
|
|
char *str, c;
|
|
#ifdef EBUG
|
|
usart1_send_blocking(cmdbuf);
|
|
#endif
|
|
str = getnum(cmdbuf, &num);
|
|
if(!str) return NULL; // bad format
|
|
if(num != the_conf.devID && num != -1) return NULL; // other target
|
|
// OK, the command is for this device
|
|
while((c = *str)){if(c != ' ' && c != '\t') break; else ++str;}
|
|
if(!c){ // simple ping
|
|
return "ALIVE";
|
|
}
|
|
switch (*str++){
|
|
case 'S': // set something
|
|
return set_something(str);
|
|
break;
|
|
case 'G': // get something
|
|
return get_something(str);
|
|
break;
|
|
case 'W': // write flash
|
|
if(store_userconf()) return ERR;
|
|
else return ALLOK;
|
|
break;
|
|
}
|
|
return BADCMD; // badcmd
|
|
}
|
|
|
|
// read `buf` and get first integer `N` in it
|
|
// @return pointer to first non-number if all OK or NULL if first symbol isn't a space or number
|
|
static char *getnum(char *buf, int32_t *N){
|
|
char c;
|
|
int positive = -1;
|
|
int32_t val = 0;
|
|
while((c = *buf++)){
|
|
if(c == '\t' || c == ' '){
|
|
if(positive < 0) continue; // beginning spaces
|
|
else break; // spaces after number
|
|
}
|
|
if(c == '-'){
|
|
if(positive < 0){
|
|
positive = 0;
|
|
continue;
|
|
}else break; // there already was `-` or number
|
|
}
|
|
if(c < '0' || c > '9') break;
|
|
if(positive < 0) positive = 1;
|
|
val = val * 10 + (int32_t)(c - '0');
|
|
}
|
|
if(positive != -1){
|
|
if(positive == 0){
|
|
if(val == 0) return NULL; // single '-'
|
|
val = -val;
|
|
}
|
|
*N = val;
|
|
}else return NULL;
|
|
return buf-1;
|
|
}
|
|
|
|
// get conf (uint16_t) number
|
|
// @return 0 if all OK
|
|
static int getu16(char *buf, uint16_t *N){
|
|
int32_t N32;
|
|
if(!getnum(buf, &N32)) return 1;
|
|
if(N32 > 0xffff || N32 < 0) return 1;
|
|
*N = (uint16_t) N32;
|
|
return 0;
|
|
}
|
|
|
|
static char *get_something(char *str){
|
|
switch(*str++){
|
|
case 'A': // get ADC value: voltage or current
|
|
return get_ADCval(str);
|
|
break;
|
|
case 'C': // get current configuration values
|
|
return get_conf();
|
|
break;
|
|
case 'R': // get raw ADC values
|
|
return get_raw_adc();
|
|
break;
|
|
case 'S': // get status
|
|
return get_status();
|
|
break;
|
|
case 'T':
|
|
return get_temper();
|
|
break;
|
|
}
|
|
return BADCMD;
|
|
}
|
|
|
|
static char *get_status(){
|
|
return NULL;
|
|
}
|
|
|
|
typedef struct{
|
|
const char *fieldname;
|
|
const uint16_t *ptr;
|
|
} user_conf_descr;
|
|
|
|
static const user_conf_descr descrarr[] = {
|
|
{"DEVID", &the_conf.devID},
|
|
{"V12NUM", &the_conf.v12numerator},
|
|
{"V12DEN", &the_conf.v12denominator},
|
|
{"I12NUM", &the_conf.i12numerator},
|
|
{"I12DEN", &the_conf.i12denominator},
|
|
{"V33NUM", &the_conf.v33numerator},
|
|
{"V33DEN", &the_conf.v33denominator},
|
|
{"ESWTHR", &the_conf.ESW_thres},
|
|
{NULL, NULL}
|
|
};
|
|
|
|
static char *get_conf(){
|
|
const user_conf_descr *curdesc = descrarr;
|
|
write2trbuf("DATAPOS=");
|
|
put_uint(the_conf.good_data_pos);
|
|
SENDBUF();
|
|
do{
|
|
write2trbuf(curdesc->fieldname);
|
|
put2trbuf('=');
|
|
put_uint((uint32_t) *curdesc->ptr);
|
|
SENDBUF();
|
|
}while((++curdesc)->fieldname);
|
|
return EODATA;
|
|
}
|
|
|
|
static char *get_raw_adc(){
|
|
int i;
|
|
for(i = 0; i < NUMBER_OF_ADC_CHANNELS; ++i){
|
|
write2trbuf("ADC[");
|
|
put2trbuf('0' + i);
|
|
write2trbuf("]=");
|
|
put_uint((uint32_t) ADC_array[i]);
|
|
SENDBUF();
|
|
}
|
|
return EODATA;
|
|
}
|
|
|
|
static char *get_ADCval(char *str){
|
|
uint32_t v;
|
|
switch(*str){
|
|
case 'D': // vdd
|
|
write2trbuf("VDD=");
|
|
v = getVdd();
|
|
break;
|
|
case 'I': // motors' current
|
|
write2trbuf("IMOT=");
|
|
v = getImot();
|
|
break;
|
|
case 'M': // vmot
|
|
write2trbuf("VMOT=");
|
|
v = getVmot();
|
|
break;
|
|
default:
|
|
return BADCMD;
|
|
}
|
|
put_uint(v);
|
|
SENDBUF();
|
|
return NULL;
|
|
}
|
|
|
|
static char *set_something(char *str){
|
|
switch(*str++){
|
|
case 'D': // set denominator
|
|
return setDenEn(1, str);
|
|
break;
|
|
case 'E': // set numerator
|
|
return setDenEn(0, str);
|
|
break;
|
|
case 'I': // set device ID
|
|
return setDevId(str);
|
|
break;
|
|
case 'T': // set endsw threshold
|
|
return setESWthres(str);
|
|
break;
|
|
}
|
|
return BADCMD;
|
|
}
|
|
|
|
/**
|
|
* set denominator/numerator
|
|
* @param De == 1 for denominator, == 0 for numerator
|
|
* @param str - rest of string
|
|
*/
|
|
static char *setDenEn(uint8_t De, char *str){
|
|
uint16_t *targ = NULL;
|
|
switch(*str++){
|
|
case 'D':
|
|
targ = De ? &the_conf.v33denominator : &the_conf.v33numerator;
|
|
break;
|
|
case 'I':
|
|
targ = De ? &the_conf.i12denominator : &the_conf.i12numerator;
|
|
break;
|
|
case 'M':
|
|
targ = De ? &the_conf.v12denominator : &the_conf.v12numerator;
|
|
break;
|
|
default:
|
|
return BADCMD;
|
|
}
|
|
omitwsp(str);
|
|
if(getu16(str, targ)) return BADCMD;
|
|
return ALLOK;
|
|
}
|
|
|
|
static char *setDevId(char *str){
|
|
omitwsp(str);
|
|
if(getu16(str, &the_conf.devID)) return BADCMD;
|
|
return ALLOK;
|
|
}
|
|
|
|
static char *setESWthres(char *str){
|
|
omitwsp(str);
|
|
if(getu16(str, &the_conf.ESW_thres)) return BADCMD;
|
|
return ALLOK;
|
|
}
|
|
|
|
static char *get_temper(){
|
|
uint32_t t = getTemp();
|
|
write2trbuf("TEMP=");
|
|
put_uint(t);
|
|
SENDBUF();
|
|
return NULL;
|
|
}
|