17 lines
369 B
C
17 lines
369 B
C
// Copyright (c) Acconeer AB, 2018-2021
|
|
// All rights reserved
|
|
|
|
#ifndef ACC_HAL_INTEGRATION_H_
|
|
#define ACC_HAL_INTEGRATION_H_
|
|
|
|
#include "acc_definitions_common.h"
|
|
#include "acc_hal_definitions.h"
|
|
|
|
/**
|
|
* @brief Get hal implementation reference
|
|
*/
|
|
const acc_hal_t *acc_hal_integration_get_implementation(void);
|
|
bool hal_test_spi_read_chipid(uint8_t chipid[2]);
|
|
|
|
#endif
|