Amaury Pouly | cb09e36 | 2012-11-03 02:16:01 +0100 | [diff] [blame] | 1 | /*************************************************************************** |
| 2 | * __________ __ ___. |
| 3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ |
| 4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / |
| 5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < |
| 6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ |
| 7 | * \/ \/ \/ \/ \/ |
| 8 | * $Id$ |
| 9 | * |
| 10 | * Copyright (C) 2010 Amaury Pouly |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License |
| 14 | * as published by the Free Software Foundation; either version 2 |
| 15 | * of the License, or (at your option) any later version. |
| 16 | * |
| 17 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY |
| 18 | * KIND, either express or implied. |
| 19 | * |
| 20 | ****************************************************************************/ |
| 21 | #ifndef __MISC_H__ |
| 22 | #define __MISC_H__ |
| 23 | |
| 24 | #include <stdbool.h> |
| 25 | #include <stddef.h> |
| 26 | |
| 27 | #define _STR(a) #a |
| 28 | #define STR(a) _STR(a) |
| 29 | |
Amaury Pouly | cb09e36 | 2012-11-03 02:16:01 +0100 | [diff] [blame] | 30 | #define ROUND_UP(val, round) ((((val) + (round) - 1) / (round)) * (round)) |
| 31 | |
Amaury Pouly | 92ecbd5 | 2017-01-04 16:36:27 +0100 | [diff] [blame] | 32 | typedef const char color_t[]; |
Amaury Pouly | cb09e36 | 2012-11-03 02:16:01 +0100 | [diff] [blame] | 33 | |
Amaury Pouly | 37f95f6 | 2016-10-27 23:06:16 +0200 | [diff] [blame] | 34 | extern color_t OFF, GREY, RED, GREEN, YELLOW, BLUE; |
Amaury Pouly | cb09e36 | 2012-11-03 02:16:01 +0100 | [diff] [blame] | 35 | void color(color_t c); |
| 36 | void enable_color(bool enable); |
| 37 | |
Amaury Pouly | 92ecbd5 | 2017-01-04 16:36:27 +0100 | [diff] [blame] | 38 | typedef void (*generic_printf_t)(void *u, bool err, color_t c, const char *f, ...); |
Amaury Pouly | cb09e36 | 2012-11-03 02:16:01 +0100 | [diff] [blame] | 39 | |
Amaury Pouly | 92ecbd5 | 2017-01-04 16:36:27 +0100 | [diff] [blame] | 40 | void generic_std_printf(void *u, bool err, color_t c, const char *f, ...); |
Amaury Pouly | cb09e36 | 2012-11-03 02:16:01 +0100 | [diff] [blame] | 41 | |
| 42 | #endif /* __MISC_H__ */ |