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

chore(epicardium): Rename serial.h to modules.h


Signed-off-by: default avatarRahix <rahix@rahix.de>
parent c73f352b
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@
#include "pmic.h"
#include "leds.h"
#include "api/dispatcher.h"
#include "modules/serial.h"
#include "modules/modules.h"
#include "FreeRTOS.h"
#include "task.h"
......
#ifndef EPIC_SERIAL_H
#define EPIC_SERIAL_H
#ifndef MODULES_H
#define MODULES_H
/* ---------- Serial ------------------------------------------------------- */
#define SERIAL_READ_BUFFER_SIZE 128
void vSerialTask(void *pvParameters);
#endif /* EPIC_SERIAL_H */
#endif /* MODULES_H */
#include <stdint.h>
#include <stdio.h>
#include "serial.h"
#include "max32665.h"
#include "cdcacm.h"
#include "uart.h"
......@@ -12,6 +10,8 @@
#include "task.h"
#include "queue.h"
#include "modules.h"
/* Task ID for the serial handler */
TaskHandle_t serial_task_id = NULL;
......
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