mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-25 17:27:18 +00:00
24 lines
671 B
C
24 lines
671 B
C
/**
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
#ifndef _POST_H_
|
|
#define _POST_H_
|
|
|
|
/* stdlib includes */
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
#define POST_MAIN_PAYLOAD_SIZE 3
|
|
#define POST_MAIN_PAYLOAD_SUBSYSTEM_OFFSET 0
|
|
#define POST_MAIN_PAYLOAD_DEVSN_OFFSET 1
|
|
#define POST_MAIN_PAYLOAD_STATUS_OFFSET 2
|
|
|
|
#endif /* _POST_H_ */
|