1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2025-04-21 12:27:27 +03:00

add gta03 board specific support

This commit is contained in:
Matt Hsu
2008-11-28 10:16:36 +00:00
committed by Andy Green
parent 20144f6c95
commit 58c0b57439
3 changed files with 235 additions and 1 deletions

View File

@@ -28,6 +28,7 @@
#include "blink_led.h"
#include "nand_read.h"
#include <neo_gta02.h>
#include <neo_gta03.h>
#define stringify2(s) stringify1(s)
#define stringify1(s) #s
@@ -35,7 +36,8 @@
extern void bootloader_second_phase(void);
const struct board_api * boards[] = {
&board_api_gta02
&board_api_gta02,
&board_api_gta03,
};
struct board_api const * this_board;