SingingCat 0
application
|
these are the callbacks available. the firmware "api". provided to the app on startup More...
#include <user_app_info.h>
Data Fields | |
int(* | atoi )(const char *s) |
void(* | com_add_arg )(struct command *com, const char *format,...) |
add an argument to the command using a format strings (see printf) More... | |
int(* | com_add_binary_arg )(struct command *com, const int len, const uint8_t *buf) |
add an argument to a command with an arbitrary length returns 0 if ok, otherwise errorcode More... | |
void(* | com_add_varg )(struct command *com, const char *format, va_list args) |
add an argument to the command using vargs More... | |
struct command *(* | com_alloc )() |
allocate a new command (for sending out) More... | |
int(* | com_deliver_command )(struct command *com, cpkt_callback) |
queue a command for sending. This is asynchronous, transmission will be retried and re-routed as necessary. Do not modify the command buffer until it has been sent successfully. Use the callback to track progress More... | |
void(* | com_free )(struct command *com) |
free a command More... | |
const char *(* | com_get_arg )(const struct command *com, int index) |
extract an argument from a command by index. Note: The returned string is guaranted to be NUL-terminated, but the argument might itself contain NUL bytes. Use com_get_arg_size() to get the length of the returned argument unless you can guarantee the argument does not contain NUL-Bytes More... | |
int(* | com_get_arg_size )(const struct command *com, int index) |
get size (in bytes) of an argument by index More... | |
struct command *(* | com_get_data_reply )(struct command *com) |
allocate command suitable for sending as reply More... | |
const char *(* | com_get_named_arg )(struct command *com, const char *name) |
extract an argument from a command by name (assuming argument is of the form key=value) More... | |
int(* | com_get_named_arg_uint16 )(struct command *com, const char *name, uint16_t *result) |
0 == ok, otherwise error. if OK, value will be stored in "result" More... | |
int(* | com_get_named_arg_uint32 )(struct command *com, const char *name, uint32_t *result) |
0 == ok, otherwise error. if OK, value will be stored in "result" More... | |
int(* | com_send_command )(struct command *com) |
int(* | com_send_reply_with_args )(struct command *com, uint8_t flags, const char *format,...) |
send a reply together with arguments More... | |
void(* | debugf )(const char *format,...) |
print a message on console/usb (only) More... | |
int(* | get_config_flag )(int flag) |
get a userconfig flag (0..n) More... | |
int(* | hijack_esp32_usart )(void(*receive_hook)(uint8_t received)) |
hijack the esp32 serial port More... | |
void(* | hijack_esp32_usart_stop )(void) |
hijack the esp32 serial port More... | |
int(* | hijack_usb_acm )(void(*receive_hook)(uint8_t *received, int size)) |
"hijack" the usb port. this means the firmware will neither send bytes through the port nor process inbound bytes from it. instead it will send them to the userapp inbound bytes will be send to the receive_hook returns 0 if successful More... | |
void(* | led_blink )(int colour, int brightness, int on, int off) |
set the led to a certain colour or blink. to set a solid colour set off==0 More... | |
int(* | mcu_set_speed )(int MCULIBHANDLE, int speed) |
change cpu speed - sometimes we need to be guaranteed to be fast. speed [1==very fast ... 10 == very slow] returns 0 if ok, otherwise errorcode More... | |
int(* | mculib_adc_enable )(MCULIB_HANDLE handle, int pin) |
int(* | mculib_adc_get_resolution )(MCULIB_HANDLE handle, int pin) |
int(* | mculib_adc_read )(MCULIB_HANDLE handle, int pin, int *result) |
int(* | mculib_adc_read_once )(MCULIB_HANDLE handle, int pin, int *result) |
long(* | mculib_get_seconds_since_boot )(void) |
get number of seconds elapsed since boot or power-up this counter is usually ever-increasing and roughly 1sec. More... | |
uint8_t(* | mculib_has_time_passed )(int secs_to_wait, long *ctr) |
int(* | mculib_pin_get )(MCULIB_HANDLE handle, int pinnum) |
get current pin level (high or low) this is a bit funny: 0 or 1 indicate the pin level. anything else is an error More... | |
int(* | mculib_pin_in )(MCULIB_HANDLE handle, int pinnum, int speed, int mode) |
configure and enable an IO-Pin as input note: pinnum are sequential 0-99 are PAnn, 100-199 are PBnn, 200-299 are PCnn callback is optional. if non-null an IRQ will be enabled on this pin More... | |
int(* | mculib_pin_in_callback )(MCULIB_HANDLE handle, pin_irq_callback pic) |
set a callback to be called whenever a pin irq is triggered More... | |
int(* | mculib_pin_out )(MCULIB_HANDLE handle, int pinnum, int speed) |
configure and enable an IO-Pin as output note: pinnum are sequential 0-99 are PAnn, 100-199 are PBnn, 200-299 are PCnn More... | |
int(* | mculib_pin_out_opendrain )(MCULIB_HANDLE handle, int pinnum, int speed) |
configure and enable an IO-Pin as output note: pinnum are sequential 0-99 are PAnn, 100-199 are PBnn, 200-299 are PCnn More... | |
int(* | mculib_pin_release )(MCULIB_HANDLE handle, int pinnum) |
deconfigure a pin (MCULIB_HANDLE handle,used for a different purpose) More... | |
int(* | mculib_pin_set )(MCULIB_HANDLE handle, int pinnum, int highlow) |
set IOPin to high or low More... | |
int(* | mculib_serialport_disable )(MCULIB_HANDLE handle, int portnum) |
int(* | mculib_serialport_enable )(MCULIB_HANDLE handle, int portnum, int baudrate) |
configure a serial port with specified parameters num == 1..n (depending on mcu) baudrate == ... 8N1 no flow control Port #3 is a good choice (PB10:TX, PB11:RX) More... | |
int(* | mculib_serialport_write_char )(MCULIB_HANDLE handle, int portnum, uint8_t b) |
write to serial port More... | |
int(* | mculib_serialport_write_string )(MCULIB_HANDLE handle, int port, const char *txt) |
write a string to serial port More... | |
int(* | mculib_spi_disable )(MCULIB_HANDLE handle, int portnum) |
disable the spi port More... | |
int(* | mculib_spi_master_enable3 )(MCULIB_HANDLE handle, int portnum, uint8_t wide, uint8_t clkpol, uint8_t cpha, uint8_t dir, uint32_t baud_in_khz) |
enable a spi port as master and set clkpol, cpha and width (wide=0 8bit, wide=1 16bit)(dir == 0=RW,1=RO,2=WO) More... | |
int(* | mculib_spi_read16_only )(MCULIB_HANDLE handle, int portnum, uint16_t *read) |
there are weird devices, like tli4970, which aren't really spi. they basically start sending as soon as CS is on More... | |
int(* | mculib_spi_send_dma )(MCULIB_HANDLE handle, int portno, void *data, uint32_t size, uint32_t flags) |
int(* | mculib_spi_speed )(MCULIB_HANDLE handle, int portnum, long khz) |
set the spi speed (after it's open and running) returns new speed or 0 if failure More... | |
int(* | mculib_spi_write_and_read )(MCULIB_HANDLE handle, int portnum, const uint16_t write, uint16_t *read) |
write a byte and read from spi if a transmission is already in progress it waits. this writes and waits for a complete transmission. then it reads and waits for a complete transmission. So it's somewhat slower than just writing note: If the spi is in 8bit mode, this will ONLY transmit and read 8 Bit! More... | |
int(* | mculib_spi_write_only )(MCULIB_HANDLE handle, int portnum, const uint16_t write) |
write a byte, discard the read if a transmission is already in progress wait until transmission is done. this writes a byte to spi. It does not wait for completion, but returns immediately. More... | |
int(* | mculib_timer_attach_pin_pwm )(MCULIB_HANDLE handle, int timer, int pin) |
int(* | mculib_timer_disable )(MCULIB_HANDLE handle, int timer) |
int(* | mculib_timer_enable_simple )(MCULIB_HANDLE handle, int timer, int freq, irq_callback callback) |
int(* | mculib_timer_set_pwm )(MCULIB_HANDLE handle, int timer, int pin, uint16_t dutycycle) |
void *(* | memset )(void *buf, int c, size_t n) |
void(* | pin_pwm )(int MCULIBHANDLE, int pin, uint32_t newstate, int flags) |
pwm a pin (mosfets, and some other pins as well) More... | |
void(* | printf )(const char *format,...) |
print a message on console and possibly forward to server into logfile as well (uses radio - expensive operation) More... | |
int(* | proto_buf_to_struct )(void *buf, int bufsize, void *iter, void *out) |
decode a buffer containing a serialised proto into a struct More... | |
void(* | proto_release )(void *buf) |
release a proto struct More... | |
int(* | proto_struct_to_buf )(void *buf, int bufsize, void *iter, void *in) |
encode a struct to a buffer. returns number of bytes written. (-1 for error) More... | |
void(* | reset_module )(void) |
reset the module (this does not return); More... | |
void(* | reset_userapp )(void) |
reset the userapp More... | |
int(* | send_via_usb_acm )(uint8_t *buf, int size) |
once a usb_acm is "hijacked", the userapp can send bytes through the usb_acm port with this function - returns 0 if successful More... | |
struct sensorruntime *(* | sensor_get_runtime_by_index )(int idx) |
get a specific sensor runtime by index. index is a local (to this module) index More... | |
int(* | sensor_register )(struct sensordev *sensor) |
register a new sensor. returns 0 if ok More... | |
int(* | snprintf )(char *buf, size_t size, const char *format,...) |
int(* | strcmp )(const char *c1, const char *c2) |
size_t(* | strlen )(const char *txt) |
char *(* | strncpy )(char *dst, const char *src, size_t size) |
void(* | time_bcd_to_timestruct )(uint32_t bcd_time, uint32_t bcd_date, struct sctime *out) |
convert BCDTime and BCDDate to timestruct More... | |
int(* | time_get_diff )(struct sctime *time1, struct sctime *time2) |
calculate seconds between two time structs More... | |
int(* | time_get_localtime_as_struct )(struct sctime *time) |
get the current time as time struct (return 0 if ok, otherwise error) More... | |
int(* | timer_softirq )(uint32_t hertz, uint32_t opaque, void(*callback)(uint32_t)) |
a very simple, not-very-accurate softirq callback. May be called multiple times returns 0 if ok, otherwise error More... | |
int(* | unhandled_call1 )() |
safety call, terminates the app More... | |
int(* | unhandled_call2 )() |
safety call, terminates the app More... | |
int(* | unhandled_call3 )() |
safety call, terminates the app More... | |
int(* | unhandled_call4 )() |
safety call, terminates the app More... | |
int(* | unhandled_call5 )() |
safety call, terminates the app More... | |
int(* | unhandled_call6 )() |
safety call, terminates the app More... | |
int(* | unhandled_call7 )() |
safety call, terminates the app More... | |
int(* | unhandled_call8 )() |
safety call, terminates the app More... | |
int(* | user_serialport_callback )(MCULIB_HANDLE handle, int portnum, serial_recv_callback cb) |
set callback for serialport receive irq More... | |
int(* | userconfig_copy )(uint8_t *buf, uint16_t bufsize, uint16_t *actual_size) |
this copies the userconfig into a ram buffer, IF the version has been updated and IF the destination buffer is large enough. actual_size (if NOT NULL) will contain the actual size of bytes once this completes without an error RETURN VALUE: 0==ok, anything else is an error (same version is not an error) More... | |
uint32_t(* | userconfig_size )() |
the userconfig: this is a little unstructured piece of flash set aside for configuration of userapps. note that this is updated at any time. If the userapp reads flash from interrupts the flash might change between invokations. if that is a problem the app should copy the contents into ram from the userloop. More... | |
uint32_t(* | userconfig_version )() |
each time the config is updated, the version is incremented. in other words, unless the version is changed, the data remains the same More... | |
int(* | userconfig_write )(uint8_t *buf, uint32_t size) |
this saves a buf as "userconfig" RETURN VALUE: 0==ok, anything else is an error (same version is not an error) More... | |
int | version |
int(* | vsnprintf )(char *buf, size_t size, const char *format, va_list args) |
these are the callbacks available. the firmware "api". provided to the app on startup
Definition at line 29 of file user_app_info.h.