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:
parent
520f0af066
commit
01fdbc3465
@ -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)
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user