eb36033fd8
Updating to integrate with Zephyr v3.2.0 required: - Update `west.yml` to import Zephyr v3.2.0 manifest - Prefix include pathname of ztest.h with `zephyr/` - Prefix every Zephyr header included pathname with `zephyr/` - Change all Zephyr tests/samples to use `find_package` - For unit_testing, use a distinct prj.conf which only references Kconfigs defined in the Zephyr repo. (Zephyr constraint.) - Move ztest headers into a zephyr-prefixed pathname Co-authored-by: Gregory Shue <gregory.shue@legrand.com>
29 lines
599 B
C
29 lines
599 B
C
/**
|
|
* @file
|
|
* @brief mock APDU handler functions
|
|
* @author Steve Karg
|
|
* @date January 2023
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
#include <zephyr/ztest.h>
|
|
#include <bacnet/basic/service/h_apdu.h>
|
|
|
|
uint16_t apdu_decode_confirmed_service_request(
|
|
uint8_t *apdu,
|
|
uint16_t apdu_len,
|
|
BACNET_CONFIRMED_SERVICE_DATA *service_data,
|
|
uint8_t *service_choice,
|
|
uint8_t **service_request,
|
|
uint16_t *service_request_len)
|
|
{
|
|
(void)apdu;
|
|
(void)apdu_len;
|
|
(void)service_data;
|
|
(void)service_choice;
|
|
(void)service_request;
|
|
(void)service_request_len;
|
|
|
|
return 0;
|
|
}
|