Remove types.h in favor of standard libs such as stdint, stddef

This commit is contained in:
Daniel Jobson 2024-09-12 10:26:25 +02:00
parent 69ef6dde8b
commit fa75ea06ae
No known key found for this signature in database
GPG key ID: 3707A9DBF4BB8F1A
13 changed files with 32 additions and 41 deletions

View file

@ -9,7 +9,9 @@
#include "led.h"
#include "lib.h"
#include "state.h"
#include "types.h"
#include <stddef.h>
#include <stdint.h>
// clang-format off
static volatile uint32_t *can_rx = (volatile uint32_t *)TK1_MMIO_UART_RX_STATUS;