2013-04-02 10:06:17 +02:00
|
|
|
/*
|
|
|
|
* board_init.c - redbee-econotag initialization code
|
|
|
|
* Copyright (C) 2013 Oliver Hahm <oliver.hahm@inria.fr>
|
|
|
|
*
|
|
|
|
* This source code is licensed under the GNU General Public License,
|
|
|
|
* Version 3. See the file LICENSE for more details.
|
|
|
|
*/
|
|
|
|
|
2013-07-29 16:41:43 +02:00
|
|
|
void board_init(void)
|
|
|
|
{
|
2013-04-02 10:06:17 +02:00
|
|
|
asm("nop");
|
|
|
|
}
|
2013-05-14 15:06:51 +02:00
|
|
|
|
2013-07-29 16:41:43 +02:00
|
|
|
void bl_init_clks(void)
|
|
|
|
{
|
2013-05-14 15:06:51 +02:00
|
|
|
// dummy to compile
|
|
|
|
}
|
|
|
|
|
2013-07-29 16:41:43 +02:00
|
|
|
void bl_init_ports(void)
|
|
|
|
{
|
2013-05-14 15:06:51 +02:00
|
|
|
// dummy to compile
|
|
|
|
}
|