-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Fix ulog #1955
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Fix ulog #1955
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
2fe79fa
[component][ulog] Fix a memory leak problem.
armink ad602f5
[component][ulog] Add filter get API.
armink 2ff67c9
[component][ulog] Add show filter settings shell command 'ulog_filter'.
armink c990f0a
[component][ulog] Add tag filter to hexdump function.
armink 6a165e5
[component][ulog] Update version to 0.1.1 .
armink acfe61b
[component][ulog] Fix some comments.
armink f28b9d8
[component][ulog] Fix a compile error when timestamp is enable.
armink File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RT-Thread内部,不建议再行各组件加版本号的,除了一些移植的组件外。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
如果这个 组件 对外(软件包)是 公共组件 ,确实会存在版本依赖的可能。例如 AT 组件,被 at_device 软件包依赖,随着开发阶段的不断完善,at_device 的不同版本对应 AT 组件的版本也不一样,在其 Kconfig 就需要用到版本依赖处理:
所以好像不增加版本,这个问题好像不太好解决。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
所以这个需要一个API的一致性、稳定性;这些一致性、稳定性随着RT-Thread的版本号走。RT-Thread本身也需要稳定性
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
那这个问题如何解决呢?在内核里增加 RT-Thread 的 Kconfig version ?