Skip to content
Snippets Groups Projects
Commit 1e692ee9 authored by Christian Eichler's avatar Christian Eichler
Browse files

Implement parsing of response "wspflash"

parent 5a359552
No related branches found
No related tags found
Loading
......@@ -158,6 +158,8 @@ static void resp_inf(bool success, char *resp) {
printf("Timer Overflow Detection: Currently %s", ('e' == *rem) ? "enabled" : "disabled");
} else if(rem = strsw(resp, "id ")) {
printf("Device ID: %s", rem);
} else if(rem = strsw(resp, "wspflash ")) {
printf("Flash Wait States: %s", rem);
} else {
printf("Unparsed: %s", resp);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment