mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +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"
|
#include "board_uart0.h"
|
||||||
|
|
||||||
#ifdef MODULE_LTC4150
|
#ifdef MODULE_LTC4150
|
||||||
#include <ltc4150.h>
|
#include "ltc4150.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MODULE_TRANSCEIVER
|
#ifdef MODULE_TRANSCEIVER
|
||||||
#include <transceiver.h>
|
#include "transceiver.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define SND_BUFFER_SIZE (100)
|
#define SND_BUFFER_SIZE (100)
|
||||||
|
@ -19,9 +19,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <thread.h>
|
|
||||||
#include <msg.h>
|
#include "thread.h"
|
||||||
#include <kernel.h>
|
#include "msg.h"
|
||||||
|
#include "kernel.h"
|
||||||
|
|
||||||
void second_thread(void)
|
void second_thread(void)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user