You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
591 B
23 lines
591 B
/* |
|
* Dashboard.h |
|
* |
|
* Created on: Apr 4, 2023 |
|
* Author: Stefa |
|
*/ |
|
|
|
#ifndef INC_DASHBOARD_H_ |
|
#define INC_DASHBOARD_H_ |
|
|
|
#include <main.h> |
|
#include "stdint.h" |
|
#include "stdlib.h" |
|
|
|
void rubm_processCan1RxMsg(uint32_t stdId, uint32_t dlc, uint8_t *data); |
|
void rubm_processCan2RxMsg(uint32_t stdId, uint32_t dlc, uint8_t *data); |
|
void AMS_Indicator(uint8_t AMS_Status); |
|
uint32_t Flash_Write_Data (uint32_t StartPageAddress, uint32_t *Data, uint16_t numberofwords); |
|
void Flash_Read_Data (uint32_t StartPageAddress, uint32_t *RxBuf, uint16_t numberofwords); |
|
|
|
|
|
|
|
#endif /* INC_DASHBOARD_H_ */
|
|
|