-
Notifications
You must be signed in to change notification settings - Fork 15
app: Add module for sending AT commands from buttons #122
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
base: main
Are you sure you want to change the base?
Conversation
Allow AT commands to be send for each of the nRF9151DK buttons. Total of 4 different AT commands that can be set using Kconfig. Intention is the help testing specific error cases that are otherwise hard to produce. Signed-off-by: Seppo Takalo <[email protected]>
e488f94 to
6a959e4
Compare
|
|
||
| endif # SM_GNSS | ||
|
|
||
| config SM_BUTTONS |
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 we have a separate Kconfig.debug for these kind of things?
Or somehow indicate that this is for debug functionality. SM_DEBUG_BUTTONS?
|
|
||
| if SM_BUTTONS | ||
|
|
||
| config SM_BUTTON0_AT |
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.
Given that DTR is tied to button0 without any overlays, this can only be used with external overlay. Would it be better to only have this for 3 buttons and mention that for button0 you can do this, but only with external overlay?
| default "AT+CFUN=4" | ||
|
|
||
| config SM_BUTTON1_AT | ||
| string "AT command for button 1" |
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 these be the DK or DTS numbers? With DK this is button 2.
trantanen
left a comment
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.
Let's discuss this debug feature after the holiday period
Allow AT commands to be send for each of the nRF9151DK buttons. Total of 4 different AT commands that can be set using Kconfig.
Intention is the help testing specific error cases that are otherwise hard to produce.