Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
2afa0268
Commit
2afa0268
authored
May 06, 2012
by
Dean Camera
Browse files
Complete BoardDriverTest build test.
parent
44f348e7
Changes
3
Hide whitespace changes
Inline
Side-by-side
BuildTests/BoardDriverTest/BoardDeviceMap.cfg
View file @
2afa0268
# BOARD DEFINE = {ARCH} : {MCU}
BOARD_USER = avr8 : at90usb1287
BOARD_USBKEY = avr8 : at90usb1287
\ No newline at end of file
BOARD_USBKEY = avr8 : at90usb1287
BOARD_STK525 = avr8 : at90usb647
BOARD_STK526 = avr8 : at90usb162
BOARD_RZUSBSTICK = avr8 : at90usb1287
BOARD_ATAVRUSBRF01 = avr8 : at90usb1287
BOARD_BUMBLEB = avr8 : at90usb162
BOARD_XPLAIN = avr8 : at90usb1287
BOARD_XPLAIN_REV1 = avr8 : at90usb1287
BOARD_EVK527 = avr8 : atmega32u4
BOARD_TEENSY = avr8 : at90usb162
BOARD_USBTINYMKII = avr8 : at90usb162
BOARD_BENITO = avr8 : at90usb162
BOARD_JMDBU2 = avr8 : atmega32u2
BOARD_OLIMEX162 = avr8 : at90usb162
BOARD_UDIP = avr8 : atmega32u2
BOARD_BUI = avr8 : at90usb646
BOARD_UNO = avr8 : atmega8u2
BOARD_CULV3 = avr8 : atmega32u4
BOARD_BLACKCAT = avr8 : at90usb162
BOARD_MAXIMUS = avr8 : at90usb162
BOARD_MINIMUS = avr8 : atmega32u2
BOARD_ADAFRUITU4 = avr8 : atmega32u4
BOARD_MICROSIN162 = avr8 : atmega162
BOARD_USBFOO = avr8 : atmega162
BOARD_SPARKFUN8U2 = avr8 : atmega8u2
BOARD_EVK1101 = uc3 : uc3b0256
BOARD_TUL = avr8 : atmega32u4
BOARD_EVK1100 = uc3 : uc3a0512
BOARD_EVK1104 = uc3 : uc3a3256
BOARD_A3BU_XPLAINED = xmega : atxmega256a3bu
BOARD_TEENSY2 = avr8 : at90usb646
BOARD_USB2AX = avr8 : atmega32u4
BOARD_USB2AX_V3 = avr8 : atmega32u4
BOARD_MICROPENDOUS_32U2 = avr8 : atmega32u2
BOARD_MICROPENDOUS_A = avr8 : at90usb1287
BOARD_MICROPENDOUS_1 = avr8 : at90usb162
BOARD_MICROPENDOUS_2 = avr8 : atmega32u4
BOARD_MICROPENDOUS_3 = avr8 : at90usb1287
BOARD_MICROPENDOUS_4 = avr8 : at90usb1287
BOARD_MICROPENDOUS_DIP = avr8 : at90usb1287
BOARD_MICROPENDOUS_REV1 = avr8 : at90usb1287
BOARD_MICROPENDOUS_REV2 = avr8 : at90usb1287
BOARD_B1_XPLAINED = xmega : atxmega128b1
BOARD_MULTIO = avr8 : at90usb162
BOARD_BIGMULTIO = avr8 : atmega32u4
BOARD_DUCE = avr8 : atmega32u2
BOARD_OLIMEX32U4 = avr8 : atmega32u4
BOARD_OLIMEXT32U4 = avr8 : atmega32u4
\ No newline at end of file
BuildTests/BoardDriverTest/Test.c
View file @
2afa0268
...
...
@@ -36,13 +36,42 @@
int
main
(
void
)
{
uint_reg_t
Dummy
;
/* Buttons Compile Check */
Buttons_Init
();
Dummy
=
Buttons_GetStatus
();
Buttons_Disable
();
/* Dataflash Compile Check */
Dataflash_Init
();
Dataflash_TransferByte
(
0
);
Dataflash_SendByte
(
0
);
Dummy
=
Dataflash_ReceiveByte
();
Dummy
=
Dataflash_GetSelectedChip
();
Dataflash_SelectChip
(
0
);
Dataflash_DeselectChip
();
Dataflash_SelectChipFromPage
(
0
);
Dataflash_ToggleSelectedChipCS
();
Dataflash_WaitWhileBusy
();
Dataflash_SendAddressBytes
(
0
,
0
);
/* LEDs Compile Check */
LEDs_Init
();
LEDs_TurnOnLEDs
(
LEDS_ALL_LEDS
);
LEDs_TurnOffLEDs
(
LEDS_ALL_LEDS
);
LEDs_SetAllLEDs
(
LEDS_ALL_LEDS
);
LEDs_SetAllLEDs
(
LEDS_NO_LEDS
);
LEDs_SetAllLEDs
(
LEDS_LED1
);
LEDs_SetAllLEDs
(
LEDS_LED2
);
LEDs_SetAllLEDs
(
LEDS_LED3
);
LEDs_SetAllLEDs
(
LEDS_LED4
);
LEDs_ChangeLEDs
(
LEDS_ALL_LEDS
,
LEDS_NO_LEDS
);
LEDs_ToggleLEDs
(
LEDS_ALL_LEDS
);
Dummy
=
LEDs_GetLEDs
();
LEDs_Disable
();
/* Joystick Compile Check */
Joystick_Init
();
Dummy
=
Joystick_GetStatus
();
Joystick_Disable
();
(
void
)
Dummy
;
}
BuildTests/BoardDriverTest/makefile
View file @
2afa0268
...
...
@@ -29,7 +29,7 @@ makeboardlist:
@
grep
"BOARD_"
$(LUFA_ROOT_PATH)
/LUFA/Common/BoardTypes.h |
cut
-d
'#'
-f2
|
cut
-d
' '
-f2
|
grep
"BOARD_"
>
BoardList.txt
testboards
:
echo
"
%
:"
>
BuildMakefile
echo
"
buildtest
:"
>
BuildMakefile
@
while
read
line
;
\
do
\
build_cfg
=
`
grep
"
$$
line "
BoardDeviceMap.cfg |
cut
-d
'='
-f2-
`
;
\
...
...
@@ -39,13 +39,15 @@ testboards:
build_mcu
=
`
echo
$$
build_cfg |
cut
-d
':'
-f2
|
cut
-d
' '
-f2
`
;
\
\
if
(
test
-z
"
$$
build_cfg"
)
;
then
\
echo
"No matching information set for board
$$
line
"
;
\
echo
"No matching information set for board
$$
build_board
"
;
\
else
\
printf
"
\t
make -f makefile.
$$
build_arch clean
\n
"
>>
BuildMakefile
;
\
printf
"
\t
make -f makefile.
$$
build_arch MCU=
$$
build_mcu BOARD=
$$
build_board
\n
"
>>
BuildMakefile
;
\
echo
"Found board configuration for
$$
build_board (
$$
build_arch,
$$
build_mcu)"
;
\
printf
"
\t
@echo Building dummy project for
$$
build_board...
\n
"
>>
BuildMakefile
;
\
printf
"
\t
make -s -f makefile.
$$
build_arch clean
\n
"
>>
BuildMakefile
;
\
printf
"
\t
make -s -f makefile.
$$
build_arch MCU=
$$
build_mcu BOARD=
$$
build_board
\n\n
"
>>
BuildMakefile
;
\
fi
;
\
done
< BoardList.txt
$(MAKE)
-f
BuildMakefile
all
$(MAKE)
-f
BuildMakefile
buildtest
clean
:
rm
-f
BuildMakefile
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment