Implement led control in another module

This commit is contained in:
Rodrigo Arias Mallo
2025-11-02 19:24:02 +01:00
parent 402e1f4e43
commit d59dec50a8
7 changed files with 207 additions and 24 deletions

17
barista/test/compat.h Normal file
View File

@@ -0,0 +1,17 @@
/* Copyright (c) 2025 Rodrigo Arias Mallo <rodarima@gmail.com>
* SPDX-License-Identifier: GPL-3.0-or-later */
#ifndef BARISTA_COMPAT_H
#define BARISTA_COMPAT_H
#ifdef __cplusplus
extern "C" {
#endif
unsigned long millis(void);
#ifdef __cplusplus
}
#endif
#endif /* BARISTA_COMPAT_H */