Adds sitara_depot/free_rtos Original one is on server_gorbunov/SmartForce4.0/sitara_depot
16 lines
291 B
C
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_ */
|