Replies: 1 comment 3 replies
-
When I developed my camera app using https://github.com/shariltumin/esp32-cam-micropython-2022 |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Running a .py on a generic ESP32 cam board, it wakes up takes a pic, uploads it to a server & deepsleeps till the next wakeup. Once I'd got all the bugs out I converted it to a code.mpy file that is run from boot.py with 'import code'.
The program still runs OK in it's .mpy guise but in the middle of the progress prints is
E (13690) gpio: gpio_install_isr_service(449): GPIO isr service already installed
that I didn't get when it was running as a .py It's not a problem. the program still runs OK but it's occurrence in the middle of the program, when I've long since finished configuring the gpio, has me intrigued.
Curious why running as a .mpy is causing this change?
Beta Was this translation helpful? Give feedback.
All reactions