mirror of
https://github.com/eddyem/stm32samples.git
synced 2026-02-28 11:54:30 +03:00
add a little (ADC2 don't work - it's weird)
This commit is contained in:
@@ -16,7 +16,9 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "adc.h"
|
||||
#include "hardware.h"
|
||||
#include "i2c.h"
|
||||
#include "proto.h"
|
||||
#include "strfunc.h"
|
||||
#include "version.inc"
|
||||
@@ -24,15 +26,36 @@
|
||||
#include <stm32f3.h>
|
||||
#include <string.h>
|
||||
|
||||
static uint8_t I2Caddress = 0;
|
||||
|
||||
// parno - number of parameter (or -1); cargs - string with arguments (after '=') (==NULL for getter), iarg - integer argument
|
||||
static int goodstub(int _U_ parno, const char _U_ *carg, int32_t _U_ iarg){
|
||||
static int goodstub(const char _U_ *cmd, int _U_ parno, const char _U_ *carg, int32_t _U_ iarg){
|
||||
return RET_GOOD;
|
||||
}
|
||||
|
||||
static int leds(int parno, const char *c, int32_t i){
|
||||
static void sendkey(const char *cmd, int parno, int32_t i){
|
||||
USB_sendstr(cmd);
|
||||
if(parno > -1) USB_sendstr(u2str((uint32_t)parno));
|
||||
USB_putbyte('='); USB_sendstr(i2str(i)); newline();
|
||||
}
|
||||
static void sendkeyf(const char *cmd, int parno, float f){
|
||||
USB_sendstr(cmd);
|
||||
if(parno > -1) USB_sendstr(u2str((uint32_t)parno));
|
||||
USB_putbyte('='); USB_sendstr(float2str(f, 2)); newline();
|
||||
}
|
||||
static void sendkeyu(const char *cmd, int parno, uint32_t u){
|
||||
USB_sendstr(cmd);
|
||||
if(parno > -1) USB_sendstr(u2str((uint32_t)parno));
|
||||
USB_putbyte('='); USB_sendstr(u2str(u)); newline();
|
||||
}
|
||||
|
||||
static int leds(const char *cmd, int parno, const char *c, int32_t i){
|
||||
if(parno < 0){ // enable/disable all
|
||||
if(c){ LEDsON = i ? 1 : 0;}
|
||||
USB_sendstr("LED="); USB_sendstr(u2str(LEDsON));
|
||||
if(c){
|
||||
LEDsON = (i ? 1 : 0);
|
||||
if(!LEDsON) for(int _ = 0; _ < 4; ++_) LED_off(_);
|
||||
}
|
||||
sendkey("LEDon", -1, LEDsON);
|
||||
}else{
|
||||
if(parno >= LEDS_AMOUNT) return RET_WRONGARG;
|
||||
if(c) switch(i){
|
||||
@@ -40,32 +63,116 @@ static int leds(int parno, const char *c, int32_t i){
|
||||
case 1: LED_on(parno); break;
|
||||
default: LED_off(parno);
|
||||
}
|
||||
USB_sendstr("LED"); USB_putbyte('0' + parno);
|
||||
USB_putbyte('='); USB_sendstr(u2str(LED_get(parno))); newline();
|
||||
sendkey(cmd, parno, LED_get(parno));
|
||||
}
|
||||
newline();
|
||||
return RET_GOOD;
|
||||
}
|
||||
|
||||
static int buzzer(const char *cmd, int _U_ parno, const char _U_ *c, int32_t i){
|
||||
if(c){
|
||||
if(i > 0) BUZZER_ON();
|
||||
else BUZZER_OFF();
|
||||
}
|
||||
sendkey(cmd, -1, BUZZER_STATE());
|
||||
return RET_GOOD;
|
||||
}
|
||||
|
||||
static int i2scan(const char _U_ *cmd, int _U_ parno, const char _U_ *c, int32_t _U_ i){
|
||||
i2c_init_scan_mode();
|
||||
return RET_GOOD;
|
||||
}
|
||||
static int i2addr(const char *cmd, int _U_ parno, const char *c, int32_t i){
|
||||
if(c){
|
||||
if(i < 0 || i>= I2C_ADDREND) return RET_WRONGARG;
|
||||
I2Caddress = (uint8_t) i;
|
||||
}
|
||||
sendkey(cmd, -1, I2Caddress);
|
||||
return RET_GOOD;
|
||||
}
|
||||
|
||||
static int adcon(const char *cmd, int _U_ parno, const char *c, int32_t i){
|
||||
if(c) ADCON(i);
|
||||
sendkey(cmd, -1, ADCONSTATE());
|
||||
return RET_GOOD;
|
||||
}
|
||||
static int adcval(const char *cmd, int parno, const char _U_ *c, int32_t i){
|
||||
if(parno >= NUMBER_OF_ADC_CHANNELS) return RET_WRONGPARNO;
|
||||
if(parno < 0){ // all channels
|
||||
for(i = 0; i < NUMBER_OF_ADC_CHANNELS; ++i) sendkey(cmd, i, getADCval(i));
|
||||
}else
|
||||
sendkey(cmd, parno, getADCval(parno));
|
||||
return RET_GOOD;
|
||||
}
|
||||
static int adcvoltage(const char *cmd, int parno, const char _U_ *c, int32_t i){
|
||||
if(parno >= NUMBER_OF_ADC_CHANNELS) return RET_WRONGPARNO;
|
||||
if(parno < 0){ // all channels
|
||||
for(i = 0; i < NUMBER_OF_ADC_CHANNELS; ++i) sendkeyf(cmd, i, getADCvoltage(i));
|
||||
}else
|
||||
sendkeyf(cmd, parno, getADCvoltage(parno));
|
||||
return RET_GOOD;
|
||||
}
|
||||
static int mcut(const char *cmd, int _U_ parno, const char _U_ *c, int32_t _U_ i){
|
||||
sendkeyf(cmd, -1, getMCUtemp());
|
||||
return RET_GOOD;
|
||||
}
|
||||
|
||||
static int reset(const char _U_ *cmd, int _U_ parno, const char _U_ *c, int32_t _U_ i){
|
||||
USB_sendstr("RESET!!!\n");
|
||||
USB_sendall();
|
||||
NVIC_SystemReset();
|
||||
return RET_GOOD; // never reached
|
||||
}
|
||||
|
||||
static int tms(const char _U_ *cmd, int _U_ parno, const char _U_ *c, int32_t _U_ i){
|
||||
sendkeyu(cmd, -1, Tms);
|
||||
return RET_GOOD;
|
||||
}
|
||||
|
||||
static int pwm(const char *cmd, int parno, const char *c, int32_t i){
|
||||
if(parno < 0 || parno > 3) return RET_WRONGPARNO;
|
||||
if(c) setPWM(parno, (uint8_t)i);
|
||||
sendkeyu(cmd, -1, getPWM(parno));
|
||||
return RET_GOOD;
|
||||
}
|
||||
|
||||
typedef struct{
|
||||
int (*fn)(int, const char*, int32_t);
|
||||
int (*fn)(const char*, int, const char*, int32_t);
|
||||
const char *cmd;
|
||||
const char *help;
|
||||
} commands;
|
||||
|
||||
commands cmdlist[] = {
|
||||
{goodstub, "stub", "simple stub"},
|
||||
{NULL, "Different commands", NULL},
|
||||
{buzzer, "buzzer", "get/set (0 - off, 1 - on) buzzer"},
|
||||
{leds, "LED", "LEDx=y; where x=0..3 to work with single LED (then y=1-set, 0-reset, 2-toggle), absent to work with all (y=0 - disable, 1-enable)"},
|
||||
{pwm, "pwm", "set/get x channel (0..3) pwm value (0..255)"},
|
||||
{reset, "reset", "reset MCU"},
|
||||
{tms, "tms", "print Tms"},
|
||||
{NULL, "I2C commands", NULL},
|
||||
{i2addr, "iicaddr", "set/get I2C address"},
|
||||
{i2scan, "iicscan", "scan I2C bus"},
|
||||
{NULL, "ADC commands", NULL},
|
||||
{adcval, "ADC", "get ADCx value (without x - for all)"},
|
||||
{adcvoltage, "ADCv", "get ADCx voltage (without x - for all)"},
|
||||
{mcut, "mcut", "get MCU temperature"},
|
||||
{adcon, "sensv", "turn on (1) or off (0) Tsens voltage"},
|
||||
{NULL, NULL, NULL}
|
||||
};
|
||||
|
||||
static void printhelp(){
|
||||
commands *c = cmdlist;
|
||||
USB_sendstr("https://github.com/eddyem/stm32samples/tree/master/F3:F303/NitrogenFlooding build#" BUILD_NUMBER " @ " BUILD_DATE "\n");
|
||||
while(c->fn){
|
||||
USB_sendstr(c->cmd);
|
||||
USB_sendstr(" - ");
|
||||
USB_sendstr(c->help);
|
||||
while(c->cmd){
|
||||
if(!c->fn){ // header
|
||||
USB_sendstr("\n ");
|
||||
USB_sendstr(c->cmd);
|
||||
USB_putbyte(':');
|
||||
}else{
|
||||
USB_sendstr(c->cmd);
|
||||
USB_sendstr(" - ");
|
||||
USB_sendstr(c->help);
|
||||
}
|
||||
newline();
|
||||
++c;
|
||||
}
|
||||
@@ -73,6 +180,7 @@ static void printhelp(){
|
||||
|
||||
static int parsecmd(const char *str){
|
||||
char cmd[CMD_MAXLEN + 1];
|
||||
//USB_sendstr("cmd="); USB_sendstr(str); USB_sendstr("__\n");
|
||||
if(!str || !*str) return RET_CMDNOTFOUND;
|
||||
int i = 0;
|
||||
while(*str > '@' && i < CMD_MAXLEN){ cmd[i++] = *str++; }
|
||||
@@ -88,10 +196,13 @@ static int parsecmd(const char *str){
|
||||
str = omit_spaces(++str);
|
||||
getint(str, &iarg);
|
||||
}
|
||||
}
|
||||
}else str = NULL;
|
||||
commands *c = cmdlist;
|
||||
while(c->fn){
|
||||
if(strcmp(c->cmd, cmd) == 0) return c->fn(parno, str, iarg);
|
||||
while(c->cmd){
|
||||
if(strcmp(c->cmd, cmd) == 0){
|
||||
if(!c->fn) return RET_CMDNOTFOUND;
|
||||
return c->fn(cmd, parno, str, iarg);
|
||||
}
|
||||
++c;
|
||||
}
|
||||
return RET_CMDNOTFOUND;
|
||||
@@ -105,6 +216,7 @@ static int parsecmd(const char *str){
|
||||
const char *cmd_parser(const char *txt){
|
||||
int ret = parsecmd(txt);
|
||||
switch(ret){
|
||||
case RET_WRONGPARNO: return "Wrong parameter number\n"; break;
|
||||
case RET_CMDNOTFOUND: printhelp(); return NULL; break;
|
||||
case RET_WRONGARG: return "Wrong command parameters\n"; break;
|
||||
case RET_GOOD: return NULL; break;
|
||||
|
||||
Reference in New Issue
Block a user