Skip to content
Snippets Groups Projects
Verified Commit 06813f8d authored by rahix's avatar rahix
Browse files

fix(epicardium): Move fatfs into modules subdir


Signed-off-by: default avatarRahix <rahix@rahix.de>
parent 45c6ef14
No related branches found
No related tags found
No related merge requests found
#ifndef EPICARDIUM_FATFS_INCLUDED
#define EPICARDIUM_FATFS_INCLUDED
void fatfs_init(void);
#endif//EPICARDIUM_FATFS_INCLUDED
......@@ -4,7 +4,6 @@
#include "max32665.h"
#include "uart.h"
#include "cdcacm.h"
#include "fatfs.h"
#include "card10.h"
#include "pmic.h"
......
......@@ -67,7 +67,6 @@ subdir('modules/')
elf = executable(
name + '.elf',
'cdcacm.c',
'fatfs.c',
'main.c',
'support.c',
module_sources,
......
File moved
module_sources = files(
'fatfs.c',
'leds.c',
'pmic.c',
'serial.c',
......
#ifndef MODULES_H
#define MODULES_H
/* FatFS */
void fatfs_init(void);
/* ---------- Serial ------------------------------------------------------- */
#define SERIAL_READ_BUFFER_SIZE 128
void vSerialTask(void *pvParameters);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment