Closed
Description
----------------------------- Delete below -----------------------------
If your issue is a general question, starts similar to "How do I..", is related to 3rd party libs, or is related to hardware, please discuss at a community forum like esp8266.com.
INSTRUCTIONS
If you do not follow these instructions, your issue may be dismissed.
- Follow the checklist under Basic Infos and fill in the [ ] spaces with an X.
- Fill in all the fields under Platform and Settings in IDE marked with [ ] (pick the correct option for you in each case, delete the others).
- If you haven't already done so, test your issue against current master branch (aka latest git), because it may have been already fixed.
- Describe your problem.
- If you have a STACK DUMP decode it:
https://arduino-esp8266.readthedocs.io/en/latest/Troubleshooting/stack_dump.html
- Include a Minimal Complete Reproducible Example sketch that shows your issue. Do not include your entire project, or a huge piece of code.
- Include debug messages:
https://arduino-esp8266.readthedocs.io/en/latest/Troubleshooting/debugging.html
- Use markup (buttons above) and the Preview tab to check what the issue will look like.
- Delete these instructions from the above to the below marker lines before submitting this issue.
----------------------------- Delete above -----------------------------
Basic Infos
- [x ] This issue complies with the issue POLICY doc.
- [x ] I have read the documentation at readthedocs and the issue is not addressed there.
- [x ] I have tested that the issue is present in current master branch (aka latest git).
- [x ] I have searched the issue tracker for a similar issue.
- If there is a stack dump, I have decoded it.
- [x ] I have filled out all fields below.
Platform
- Hardware: [ESP-12]
- Core Version: [1/10/19]
- Development Env: [Arduino IDE]
- Operating System: [Windows]
Settings in IDE
- Module: [Nodemcu]
- Flash Mode: [qio|dio|other]
- Flash Size: [4MB]
- lwip Variant: [v2 Lower Memory]
- Reset Method: [nodemcu]
- Flash Frequency: [40Mhz]
- CPU Frequency: [80Mhz]
- Upload Using: [SERIAL]
- Upload Speed: [115200] (serial upload only)
Problem Description
Only the first string literal of a concatenated pair is printed in the sketch below.
MCVE Sketch
#include <Arduino.h>
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.printf("\n");
Serial.printf("test1" ", test2");
Serial.printf("\n");
Serial.printf_P(PSTR("test1" ", test2"));
Serial.printf("\n");
}
void loop() {
}
Debug Messages
15:51:27.175 -> test1, test2
15:51:27.175 -> test1
Metadata
Metadata
Assignees
Labels
No labels