aboutsummaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2017-04-15 16:54:44 -0400
committerRob Austein <sra@hactrn.net>2017-04-15 16:54:44 -0400
commitfd2c93584f644671ca9464a9cb57b5d497709ff8 (patch)
tree6767bf08a55d5a239c82f0043a0ce07cc475918d /projects
parentd0b87b7cc01270b3ed8a1e20a64482e1446f416b (diff)
Move hal_log() support to separate module.
Diffstat (limited to 'projects')
-rw-r--r--projects/hsm/hsm.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/projects/hsm/hsm.c b/projects/hsm/hsm.c
index 5e9d06e..60e35fc 100644
--- a/projects/hsm/hsm.c
+++ b/projects/hsm/hsm.c
@@ -257,31 +257,6 @@ void hal_critical_section_end(void)
}
#endif
-/* Logging */
-
-static hal_log_level_t current_log_level;
-
-void hal_log_set_level(const hal_log_level_t level)
-{
- current_log_level = level;
-}
-
-void hal_log(const hal_log_level_t level, const char *format, ...)
-{
- if (level < current_log_level)
- return;
-
- char buffer[2048];
- va_list ap;
-
- va_start(ap, format);
- vsnprintf(buffer, sizeof(buffer), format, ap);
- va_end(ap);
-
- uart_send_string2(STM_UART_MGMT, buffer);
- uart_send_string2(STM_UART_MGMT, "\r\n");
-}
-
/* The main thread. This does all the setup, and the worker threads handle
* the rest.
*/