7e11828c6e
Created a new directory called bsp (board support package) to hold board or system on chip specific code. The idea is the following. Change-Id: Ica5886806940facae2fa5492fcc938b3c2b989be
11 lines
218 B
C
11 lines
218 B
C
#ifndef _BSP_PADCONF_H_
|
|
#define _BSP_PADCONF_H_
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
void bsp_padconf_init(void);
|
|
int bsp_padconf_set(u32_t padconf, u32_t mask, u32_t value);
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#endif /* _BSP_PADCONF_H_ */
|