1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

examples: make includes adhere to coding conventions

This commit is contained in:
Christian Mehlis 2014-03-24 11:08:42 +01:00
parent 520f0af066
commit 01fdbc3465
2 changed files with 6 additions and 5 deletions

View File

@ -32,11 +32,11 @@
#include "board_uart0.h"
#ifdef MODULE_LTC4150
#include <ltc4150.h>
#include "ltc4150.h"
#endif
#ifdef MODULE_TRANSCEIVER
#include <transceiver.h>
#include "transceiver.h"
#endif
#define SND_BUFFER_SIZE (100)

View File

@ -19,9 +19,10 @@
*/
#include <stdio.h>
#include <thread.h>
#include <msg.h>
#include <kernel.h>
#include "thread.h"
#include "msg.h"
#include "kernel.h"
void second_thread(void)
{