-
Notifications
You must be signed in to change notification settings - Fork 179
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
out-of-order initializers are nonstandard in C++ (CON-1587) #1317
Comments
Can you point me to the place from where you cut-pasted the code snippet? in C++, designated initializers must follow the same order as the member variable declarations in the struct. You can fix the order of initialization above by moving around the members as per the declaration of those structs, or simply change them to something like
|
well, I've first made this apart an I copied that code so I could see that it works. You can see that code below here.
|
how is this code saved as? Is it a .cpp or .c file? If it's .cpp the error you are seeing is expected. PS: Most of compilation errors can be fixed by a Google search which would point to the stackoverflow link. |
Thx, for helping me. I find the error not every time so clear and if I searched the internet around did they use most of the time the {} version. But I've tried to configure it with the ; instead of the {} and it can build. So I think it is fixed with the solution you said above. Both are .cpp file |
@ravencarcass thanks for confirmation, can you please close if it working. |
@shubhamdp , I've only a problem because I get no PWM out of my pins so their could be somethings wrong.
The reported code lines where from the driver file:
|
@ravencarcass Is your original issue "out-of-order initializers are nonstandard in C++" fixed? If yes, please close this, for other problems please open a new one. I don't want users to get confused where we are solving different problem under different heading. Anyways, ledc_channel_config() returns an error of type |
Describe the bug
I have a problem though I am going to build my program. I started with the matter example light. Then I added a few things. This all worked up to a certain point. I added I2C. This all worked very well. Once I wanted to add a ledc VSCode gives me a strange error.
“out-of-order initializers are nonstandard in C++”.
Environment
ESP-IDF Commit Id: V5.4
SoC ESP32C6:
Host Machine OS: linux Ubuntu 22.04
Host Machine Python version: 3.10.12
Any additional details
I first did some with the I2C protocol in the matter enviroment and it gave me no error. After these test would I like to add a ledc and then began the problems. This is the code where he runs in trouble:
The text was updated successfully, but these errors were encountered: