37 lines
1.0 KiB
C
37 lines
1.0 KiB
C
#ifndef __PROJCFG_H__
|
|
#define __PROJCFG_H__
|
|
|
|
/*******************************************************************************
|
|
* the includes
|
|
******************************************************************************/
|
|
#include "stm32l4xx_hal.h"
|
|
|
|
/*******************************************************************************
|
|
* the defines
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
* the typedefs
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
* the globals
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
* the functions
|
|
******************************************************************************/
|
|
void setBootFlag(void);
|
|
void projcfg_init(void);
|
|
void setHardFaultData(uint32_t data);
|
|
|
|
|
|
|
|
#endif
|