sitara_depot/components/free_rtos/base/swap.h
algin ae3cac8a7d feat: First commit
Adds sitara_depot/free_rtos

Original one is on server_gorbunov/SmartForce4.0/sitara_depot
2023-05-03 14:01:32 +03:00

16 lines
291 B
C

/*
* swap.h
*
* Created on: 13 ìàð. 2023 ã.
* Author: sychev
*/
#ifndef FREE_RTOS_BASE_SWAP_H_
#define FREE_RTOS_BASE_SWAP_H_
#define BASE_SWAP32(value) __builtin_bswap32(value)
#define BASE_SWAP16(value) (uint16_t)__builtin_bswap16(value)
#endif /* FREE_RTOS_BASE_SWAP_H_ */