You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
255 B
16 lines
255 B
2 years ago
|
//
|
||
|
// Created by MightyPork on 2023/04/09.
|
||
|
//
|
||
|
|
||
|
#ifndef TOASTER_OVEN_BLUEPILL_TRANSMUTE_H
|
||
|
#define TOASTER_OVEN_BLUEPILL_TRANSMUTE_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
typedef union x32 {
|
||
|
uint32_t u;
|
||
|
float f;
|
||
|
} x32_t;
|
||
|
|
||
|
#endif //TOASTER_OVEN_BLUEPILL_TRANSMUTE_H
|