-
Got a new mac pro with m1 processor. When I run mcconfig ..., I see the following lines:
But when I run mcrun ...., I see the following lines:
mcrun, does not switch on automatically
as mcconfig does. By changing a little in
runs it fine. Have tried ch9-poco with Hope you can find a solution that works for everyone. Yours sincerely |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
After some searching in makefiles, it seems that after the first time a variable is used, "? =" is used. So now I have changed "make.esp32.mk" to:
And it works fine for me. |
Beta Was this translation helpful? Give feedback.
-
Hi @Frida854, Thank you for the report! I've done some looking into this. I concur that the logic we use in I'll take a look at good options here. In the meantime, I recommend just setting the The change you've proposed above will also work on your machine, as you've shown, so no need to change it if you don't want to. But it may cause issues on other machines, especially those with multiple serial devices connected. - Andy |
Beta Was this translation helpful? Give feedback.
After some searching in makefiles, it seems that after the first time a variable is used, "? =" is used.
But if it needs to be changed afterwards, use "=".
So now I have changed "make.esp32.mk" to:
And it works fine for me.
Yours sincerely
Poul