ud3tn/include/platform/hal_platform.h
Felix Walter 00d5d2d050 external, hal: Remove unused crypto (HMAC, SHA2) and JSON functions
This removes all external functions currently unused in uD3TN.
We may re-introduce esp. JSON at a later point in time, but should
include updated libraries anyway.

Signed-off-by: Felix Walter <felix.walter@d3tn.com>
2023-05-12 09:12:30 +02:00

22 lines
636 B
C

// SPDX-License-Identifier: BSD-3-Clause OR Apache-2.0
/*
* hal_platform.h
*
* Description: contains the definitions of the hardware abstraction
* layer interface for various hardware-specific functionality
*
*/
#ifndef HAL_PLATFORM_H_INCLUDED
#define HAL_PLATFORM_H_INCLUDED
/**
* @brief hal_platform_init Allows the initialization of the underlying
* operating system or hardware.
* @param argc the argument count as provided to main(...)
* @param argv the arguments as provided to main(...)
* Will be called once at startup
*/
void hal_platform_init(int argc, char *argv[]);
#endif /* HAL_PLATFORM_H_INCLUDED */