mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
12 lines
288 B
C
12 lines
288 B
C
|
/*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
void board_init(void) {
|
||
|
asm("nop");
|
||
|
}
|