Removed DUSK_ prefix

This commit is contained in:
2025-08-23 10:13:49 -05:00
parent 1bf6fe6eaf
commit 1dfde00317
28 changed files with 148 additions and 101 deletions

View File

@@ -9,12 +9,12 @@
#include "consolevar.h"
#include "consolecmd.h"
#if DUSK_CONSOLE_POSIX
#if CONSOLE_POSIX
#include "thread/thread.h"
#include <poll.h>
#include <unistd.h>
#define DUSK_CONSOLE_POSIX_POLL_RATE 75
#define CONSOLE_POSIX_POLL_RATE 75
#endif
typedef enum {
@@ -48,7 +48,7 @@ typedef struct {
bool_t visible;
#if DUSK_CONSOLE_POSIX
#if CONSOLE_POSIX
char_t inputBuffer[CONSOLE_LINE_MAX];
thread_t thread;
threadmutex_t execMutex;
@@ -114,7 +114,7 @@ void consoleUpdate();
*/
void consoleDispose(void);
#if DUSK_CONSOLE_POSIX
#if CONSOLE_POSIX
/**
* Input thread handler for posix input.
*