建立工程,成功创建两个虚拟串口
This commit is contained in:
		
							
								
								
									
										38
									
								
								source/OpenAMP/libmetal/lib/system/generic/sleep.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								source/OpenAMP/libmetal/lib/system/generic/sleep.h
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,38 @@ | ||||
| /* | ||||
|  * Copyright (c) 2018, Linaro Limited. and Contributors. All rights reserved. | ||||
|  * | ||||
|  * SPDX-License-Identifier: BSD-3-Clause | ||||
|  */ | ||||
|  | ||||
| /* | ||||
|  * @file	generic/sleep.h | ||||
|  * @brief	Generic sleep primitives for libmetal. | ||||
|  */ | ||||
|  | ||||
| #ifndef __METAL_SLEEP__H__ | ||||
| #error "Include metal/sleep.h instead of metal/generic/sleep.h" | ||||
| #endif | ||||
|  | ||||
| #ifndef __METAL_GENERIC_SLEEP__H__ | ||||
| #define __METAL_GENERIC_SLEEP__H__ | ||||
|  | ||||
| #include <metal/utilities.h> | ||||
|  | ||||
| #ifdef __cplusplus | ||||
| extern "C" { | ||||
| #endif | ||||
|  | ||||
| static inline int __metal_sleep_usec(unsigned int usec) | ||||
| { | ||||
| 	metal_unused(usec); | ||||
| 	/* Fix me */ | ||||
| 	return 0; | ||||
| } | ||||
|  | ||||
| /** @} */ | ||||
|  | ||||
| #ifdef __cplusplus | ||||
| } | ||||
| #endif | ||||
|  | ||||
| #endif /* __METAL_GENERIC_SLEEP__H__ */ | ||||
		Reference in New Issue
	
	Block a user
	 ranchuan
					ranchuan