diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-10-19 18:16:04 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-10-19 18:16:04 +0200 |
commit | 2274409f898351f958975d49b0324d992c6073d0 (patch) | |
tree | 9eefffde9a96a4a3b42f4d7beaf2e5414691f5dd | |
parent | 89b8217435286081dc0fe481559da3ee5c20c72a (diff) | |
parent | 0b05974d6462780030802a2991a9c929059b722a (diff) |
Merge branch 'dev' into protocol
-rw-r--r-- | stm32f091/util.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/stm32f091/util.h b/stm32f091/util.h new file mode 100644 index 0000000..8e3258f --- /dev/null +++ b/stm32f091/util.h @@ -0,0 +1,15 @@ +#pragma once + +#include <stdlib.h> +#include <stdio.h> +#include <stm32f0xx_hal.h> +#include <string.h> + +#include "setup.h" + +#define ws_usb_printf(fmt, ...) { \ + char temp[255]; \ + sprintf(temp, fmt, ##__VA_ARGS__); \ + HAL_UART_Transmit(&huart2, (uint8_t*) temp, sizeof(char) * strlen(temp), HAL_MAX_DELAY); \ +} + |