update build system for board specific code that's 'local' to the
program you are building. update tests to consolidate common code.
This commit is contained in:
parent
a791be393b
commit
87cd9c7a36
13 changed files with 126 additions and 166 deletions
32
tests/tests.c
Normal file
32
tests/tests.c
Normal file
|
@ -0,0 +1,32 @@
|
|||
#include <mc1322x.h>
|
||||
#include "put.h"
|
||||
|
||||
void uart_init(uint16_t inc, uint16_t mod) {
|
||||
/* Restore UART regs. to default */
|
||||
/* in case there is still bootloader state leftover */
|
||||
|
||||
*UART1_CON = 0x0000c800; /* mask interrupts, 16 bit sample --- helps explain the baud rate */
|
||||
|
||||
/* INC = 767; MOD = 9999 works: 115200 @ 24 MHz 16 bit sample */
|
||||
*UART1_BR = (inc << 16) | mod;
|
||||
|
||||
/* see Section 11.5.1.2 Alternate Modes */
|
||||
/* you must enable the peripheral first BEFORE setting the function in GPIO_FUNC_SEL */
|
||||
/* From the datasheet: "The peripheral function will control operation of the pad IF */
|
||||
/* THE PERIPHERAL IS ENABLED. */
|
||||
*UART1_CON = 0x00000003; /* enable receive and transmit */
|
||||
*GPIO_FUNC_SEL0 = ( (0x01 << (14*2)) | (0x01 << (15*2)) ); /* set GPIO15-14 to UART (UART1 TX and RX)*/
|
||||
|
||||
}
|
||||
|
||||
void print_welcome(char* testname) {
|
||||
puts("mc1322x-test: ");
|
||||
puts(testname);
|
||||
puts("\n\r");
|
||||
puts("board: ");
|
||||
#if (BOARD == redbee-dev)
|
||||
puts("redbee-dev");
|
||||
#elif (BOARD == redbee-r1)
|
||||
puts("redbee-dev");
|
||||
#endif
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue