![]() |
The foxBMS secondary mcu API documentation
|
Header for the driver for the COM module. More...
#include "general.h"
Go to the source code of this file.
Macros | |
#define | fprintf(...) |
#define | printf(...) |
Functions | |
void | COM_Decoder (void) |
COM_Decoder parses and interprets user defined input data. More... | |
void | COM_StartupInfo (void) |
COM_StartupInfo prints some startup related informations (time & date). More... | |
void | COM_printTimeAndDate (void) |
void | COM_printHelpCommand (void) |
void | COM_uartWrite (const uint8_t *source) |
UART_vWrite provides an interface to send data. More... | |
void | UART_uartWrite_intbuf (const uint8_t *source, uint16_t length) |
UART_vWrite provides an interface to send data. More... | |
void | SYSCALL_Init (void) |
__attribute__ ((weak)) void COM_Decoder(void) | |
Header for the driver for the COM module.
BSD 3-Clause License Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
We kindly request you to use one or more of the following phrases to refer to foxBMS in your hardware, software, documentation or advertising materials:
″This product uses parts of foxBMS®″
″This product includes parts of foxBMS®″
″This product is derived from foxBMS®″
Available COM commands:
help – prints list of available commands teston – Enables testmode printcontactorinfo – prints the contactor info (number of switches and the contactor hard switch entries printdiaginfo – prints the diagnosis info gettime – prints mcu time and date getruntime – get runtime since last reset getoperatingtime – get total operating time
Following commands only available in testmode!
testoff – disables testmode settime YY MM DD HH MM SS – sets mcu time and date (YY-year, MM-month, DD-date, HH-hours, MM-minutes, SS-seconds) reset – resets mcu watchdogtest – watchdog timeout results in system reset setsoc xxx.xxx – set SOC value (000.000% - 100.000%) ceX – enables contactor number X cdX – disables contactor number X
#define fprintf | ( | ... | ) |
#define printf | ( | ... | ) |
__attribute__ | ( | (weak) | ) |
void COM_Decoder | ( | void | ) |
COM_Decoder parses and interprets user defined input data.
This function needs to be called within a cyclic engtask e.g. ENG_TSK_Cyclic_10ms It processes input data received by the UART module asynchronly.
void COM_printHelpCommand | ( | void | ) |
Prints list of available commands
void COM_printTimeAndDate | ( | void | ) |
Prints date and time info on serial interface
void COM_StartupInfo | ( | void | ) |
COM_StartupInfo prints some startup related informations (time & date).
This function needs proper initialized RTC and UART module to work. Called during startup process in main function.
void COM_uartWrite | ( | const uint8_t * | source | ) |
UART_vWrite provides an interface to send data.
This function copies data from input buffer to transmit ringbuffer and processes this data in case it's not already busy transmitting data. The copying will stop as soon as an ASCII NULL character is detected. To avoid data corruption caused by simultaneous accesses some kind of critical section is used.
void SYSCALL_Init | ( | void | ) |
void UART_uartWrite_intbuf | ( | const uint8_t * | source, |
uint16_t | length | ||
) |
UART_vWrite provides an interface to send data.
This function copies data from input buffer to transmit ringbuffer and processes this data in case it's not already busy transmitting data. To avoid data corruption caused by simultaneous accesses some kind of critical section is used. The difference between UART_vWrite(const uint8_t *source) and this function is, that this one does not stop at an ASCII_NULL character. Therefore writing of non ASCII characters is possible without having to worry that the data might represent an ASCII NULL character.