-
Notifications
You must be signed in to change notification settings - Fork 0
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
@FIR-43: Added Zephyr logging and TSI application #3
Conversation
@@ -0,0 +1,18 @@ | |||
CONFIG_LOG=y | |||
CONFIG_CONSOLE=y | |||
CONFIG_LOG_PRINTK=y |
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.
Do you need this ?
tsi_app/m85/prj_poll.conf
Outdated
@@ -0,0 +1,4 @@ | |||
CONFIG_SHELL=y | |||
CONFIG_SHELL_BACKEND_SERIAL_INTERRUPT_DRIVEN=n |
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.
Do you need this change ?
tsi_app/m85/sample.yaml
Outdated
common: | ||
tags: introduction | ||
integration_platforms: | ||
- ek_tsi_skyp |
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.
You can check if we need to rename this file ? As sample.yml is not clear what it is intended for.
tsi_app/m85/src/main.c
Outdated
#include <zephyr/logging/log_output.h> | ||
|
||
#define DATA_MAX_DLEN 8 | ||
#define LOG_MODULE_NAME m85 |
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.
Should this be TSI_M85 to clearly identify M85
tsi_app/m85/src/main.c
Outdated
{ | ||
|
||
/* TSI banner */ | ||
printf("!! ------------------------------------------ !! \n"); |
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.
Can we define this as strings ? Is this a standard practice for the for a boot banner.
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.
LGTM
Added first Zephyr logging and TSI application start point. The prj.conf of this application includes shell capability as well which will be enabled subsequently.