@jmarcelino if that is built in to the low level esp.read and esp.write to flash, then it may be transparent, covering anything in flash, like binary code, frozen bytecode and file system. It would then protect against raw readout of flash bypassing the esp.
@OPCDF Unfortunately there isn't a way to mark it as resolved (we're looking into other forums that allow you to do it).
The best thing you can do right now is to modify the title of this post to add '[SOLVED]' to the end of it!
Thanks!
Thanks anyway but the problem fixed itself after I updated the firmware and made a few other changes to my code but i still don't know what the problem was but am all good now.
Kind regards,
Chris
@bucknall : @chrisi runned into one of your documentation errors: https://docs.pycom.io/pycom_esp32/pycom_esp32/tutorial/includes/pytrack-examples.html#axis-accelerometer
you might adapt the example as mentioned above.
@livius
Hi livius, That's work!, now I need to understand how work the "format" of the "pack" function and specialy "little and big-endian.
Best regards
Jiemde
@robert-hh said in SiPy and BME280:
i2c = I2C(0, I2C.MASTER, pins=(Pin("G9"), Pin("G10")))
Thank you soooo much, correct syntax for me is:
i2c = I2C(0, I2C.MASTER, pins=("G9", "G10"))
and thanks @bucknall for the library ;)
Hi @adrien3d,
Could you please try following the instructions at the bottom of this page, https://atom.io/packages/pymakr? It looks like you're having issues with the serial port module!
Let me know if this helps,
Alex
@BetterAuto You had to be within the first 100 to sign up when the beta was first announced many months ago. I signed up the first day it was announced but still have no confirmation that I am in the beta program.
@jmarcelino
Yes, my problem is the same as what you highlight, thanks for solving the mystery.
As an temp solution (for lazy ppl) I can suggest :
# hard reset if last was a soft reset
if reset_cause() == 4:
reset()
if not 'sigfox' in locals():
sigfox = Sigfox(mode=Sigfox.SIGFOX, rcz=Sigfox.RCZ4)
Regarding the UART1 activity causing Sigfox instability, I will do more tests later.
Maybe update the SiPy pinout PDF to include the UART1 pins (like LoPy) as @livius mentioned?
Hi @scg94
Sorry, I'm jumping late in this topic
1/ Did you manage to get this sorted ?
2/ If not, I assume you got this base station through a loan from Phaxsi Solutions ? Please send details to devrelations@sigfox.com so we can have a look
3/ In case you're unaware, Phaxsi is organising two developer events next week in Bogota & Medellin : makers.sigfox.com/tour
@Vercellotti The pyb module exists for PyBoard in the micropython.org family of ports, not for the Pycom family of boards. Since the Pycom software is derived from these, it is mentioned still at some places in the docs. The module machine is to be used instead.