2f3ea9494e
* gpio, hsem, crypto: switch from HAL to LL/registers * Moved GPIO initialization to furi_hal * More HAL removed * All HAL modules disabled * HAL is finally removed * hal_gpio -> furi_hal_gpio, main.h removed * Bootloader build fix * RTOS config moved to freertos-glue * delay -> furi_hal_delay Co-authored-by: あく <alleteam@gmail.com>
16 lines
311 B
C
16 lines
311 B
C
#pragma once
|
|
|
|
#include <furi_hal_i2c.h>
|
|
#include <furi_hal_light.h>
|
|
#include <furi_hal_resources.h>
|
|
#include <furi_hal_spi.h>
|
|
#include <furi_hal_version.h>
|
|
|
|
#define furi_assert(value) (void)(value)
|
|
|
|
void furi_hal_init();
|
|
|
|
void furi_hal_delay_ms(float milliseconds);
|
|
|
|
void furi_hal_delay_us(float microseconds);
|