Welcome to mirror list, hosted at ThFree Co, Russian Federation.

endian.h « mac « include « stack « zigbee « STM32_WPAN « ST « Middlewares - github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5092ef20d17cc471deea10a41a526cc10da00c1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Copyright [2019] Exegin Technologies Limited. All rights reserved. */

#ifndef ZIGBEE_ENDIAN_H
#define ZIGBEE_ENDIAN_H

#ifndef BIG_ENDIAN
# define BIG_ENDIAN                         4321
#endif
#ifndef LITTLE_ENDIAN
# define LITTLE_ENDIAN                      1234
#endif

#define BYTE_ORDER                          LITTLE_ENDIAN

#endif /* ZIGBEE_ENDIAN_H */