39 lines
1022 B
C
39 lines
1022 B
C
#ifndef __BOOTAPP_H__
|
|
#define __BOOTAPP_H__
|
|
|
|
/*******************************************************************************
|
|
* the includes
|
|
******************************************************************************/
|
|
#include "stm32l4xx_hal.h"
|
|
|
|
|
|
/*******************************************************************************
|
|
* the defines
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
* the typedefs
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
* the globals
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
* the functions
|
|
******************************************************************************/
|
|
|
|
void WriteCRCInfo(uint32_t len, uint32_t crc);
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|