mirror of
https://github.com/Fishwaldo/OBLFR.git
synced 2025-03-15 19:31:28 +00:00
* Initial Work on setting custom BSP for ox64 * add M1S Dock BSP * Add Apache 2.0 License file * refactor to support bl702 and BL616 Chips * Update SDK Variable name * Ensure we get the BOARD from our proj.conf when recompiling * Till bl_mcu_sdk merge https://github.com/bouffalolab/bl_mcu_sdk/pull/82 lets just let Make warn about overriding targets * change PINE64_SDK_PATH to OBLFR_SDK_PATH
16 lines
260 B
C
16 lines
260 B
C
#include <bflb_gpio.h>
|
|
#include <bflb_clock.h>
|
|
#include "bl808_bsp.h"
|
|
#include "log.h"
|
|
|
|
|
|
pinmux_setup_t pinmux_setup[] = {
|
|
COMMON_PINMUX_SETUP()
|
|
};
|
|
|
|
|
|
void board_init() {
|
|
board_common_init(pinmux_setup, sizeof(pinmux_setup)/sizeof(pinmux_setup_t));
|
|
|
|
}
|
|
|