-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chong Liu
committed
Jan 27, 2024
1 parent
a40a554
commit 57e39c4
Showing
1 changed file
with
1 addition
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* @Author : Chong Liu | truegrit [email protected] | ||
* @CreateDate : 2023-09-18 22:40:08 | ||
* @LastEditors : Chong Liu | ||
* @LastEditTime : 2024-01-27 14:19:19 | ||
* @LastEditTime : 2024-01-27 14:21:18 | ||
* ================================================================================= | ||
* Copyright (c) 2023 by Chong Liu, All Rights Reserved. | ||
* ================================================================================= | ||
|
@@ -113,12 +113,6 @@ void RingBuffer_Print(RingBuffer *p_ring) { | |
printf("%d -> ", p_ring->p_buff[idx]); | ||
} | ||
printf("NULL\n"); | ||
|
||
// printf("环形Buffer: "); | ||
// for (int16_t i = 0; i < p_ring->buff_len; ++i) { | ||
// printf("%d -> ", p_ring->p_buff[i]); | ||
// } | ||
// printf("NULL\n"); | ||
} | ||
|
||
/** | ||
|