| 123456789101112131415161718192021222324 |
- /*
- Copyright (C) 2019 Intel Corporation
- SPDX-License-Identifier: Apache-2.0
- Open Drone ID C Library
- Maintainer:
- Gabriel Cox
- gabriel.c.cox@intel.com
- */
- /*由opendroneid而来 暂时符合opendroneid的wifi形式*/
- #pragma once
- #include "stdint.h"
- #include "odid_wifi.h"
- #include "cndroneid.h"
- /* 国标元素ID */
- #define CN_WIFI_VENDOR_IE_ELEMENT_ID 0xDD
- struct __attribute__((__packed__)) CNDID_service_info {
- uint8_t message_counter;
- CNDID_MessagePack_encoded cndid_message_pack[];
- };
|