MeshX 0.4
This repository provides an implementation for Bluetooth Low Energy (BLE) Mesh network nodes. The project allows you to create BLE mesh nodes that can communicate with each other, enabling the development of smart home solutions or other IoT-based applications.
Loading...
Searching...
No Matches
gpio_test_registry.h
Go to the documentation of this file.
1/**
2 * @file gpio_test_registry.h
3 * @brief Header for GPIO test registry
4 */
5
6#ifndef __GPIO_TEST_REGISTRY_H
7#define __GPIO_TEST_REGISTRY_H
8
9#include "meshx_err.h"
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15#if CONFIG_ENABLE_UNIT_TEST
16
17/**
18 * @brief Register all GPIO subsystem tests
19 * @return meshx_err_t MESHX_SUCCESS on success
20 */
22
23#endif /* CONFIG_ENABLE_UNIT_TEST */
24
25#ifdef __cplusplus
26}
27#endif
28
29#endif /* __GPIO_TEST_REGISTRY_H */
meshx_err_t register_all_gpio_tests(void)
Register all GPIO subsystem tests.
Definition gpio_test_registry.c:20
MeshX Error Codes.
meshx_err_t
MeshX Error Codes.
Definition meshx_err.h:43