19 lines
412 B
C
19 lines
412 B
C
/*
|
|
* flash_interface.h
|
|
*
|
|
* Created on: 16-Jan-2023
|
|
* Author: Vecmocon Technology
|
|
*/
|
|
|
|
#ifndef PLATFORM_FLASH_INTERFACE_H_
|
|
#define PLATFORM_FLASH_INTERFACE_H_
|
|
|
|
#include <stdint.h>
|
|
#include "Core/Include/ivec_mcal_spi.h"
|
|
#include "../utils/utils.h"
|
|
|
|
int8_t flash_sendData(void* txBuffer, uint8_t* rxBuffer, uint32_t numberOfFrames);
|
|
uint32_t flash_msTick(void);
|
|
|
|
#endif /* PLATFORM_FLASH_INTERFACE_H_ */
|