blob: 5aa9c5341de1c190c596deb33820dcd4fc57fbbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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_ */
|