Cool stuff for Raspberry Pi, Arduino and all electronics hobby projects
Notifications
Clear all

High reliability mode / guaranteed wake mode for Witty Pi 4

32 Posts
4 Users
1 Likes
910 Views
(@eagleshot)
Posts: 32
Eminent Member
Topic starter
 

Hey @admin 🙂

I just wanted to pick the topic of a "high reliability mode" back up, as I wasn't able to implement  a really elegant solution on how to wake up if the system is not woken up by the RTC so far. My use case are systems, where the schedule is updated remotely, so an invalid schedule file could potentially "brick" the system (or other issues such as the capacitor problem, where a start was triggered, but not executed due to power issues).

My newest idea would be a counter that gets increased with every time the watchdog wakes up the MCU. If the raspberry pi starts up (e.g. by the RTC), the counter gets reset. If it doesn't start, the raspberry pi gets started by the MCU after the counter gets big enough (e.g. after 24 hours). This way, this functionality could be added with very low additional complexity and little additional memory usage. You can see an example implementation here: https://github.com/Eagleshot/Witty-Pi-4/commit/abd4251dcd72fd82910d1910d0f52735935744e0

Could this be a feature, that could be implemented in the official firmware or can you give me feedback, if this makes any sense to you? 😀 

Another question I have is that while trying to compile the firmware to test this modification, I couldn't find the TinyWireS library in the Arduino library manager. Do I have to install it manually from this link ( https://github.com/nadavmatalon/TinyWireS) or is there another location to install it?

Thank you very much for your help!😀

Eagleshot

 

 

 
Posted : 28/05/2024 9:36 pm
(@admin)
Posts: 421
Member Admin
 

@drunkenungulate yes, this feature will be implemented for Witty Pi 4, Witty Pi 4 Mini and Witty Pi 4 L3V7.

 
Posted : 09/06/2024 10:15 am
(@eagleshot)
Posts: 32
Eminent Member
Topic starter
 

@admin Do you have an ETA for when you can complete the implementation? (Dont want to stress you but it would be helpful to know) 🙂

 
Posted : 09/06/2024 2:41 pm
(@admin)
Posts: 421
Member Admin
 

@eagleshot we are currently running some tests to partially cover this new feature, I think we will be there within next week.

 
Posted : 09/06/2024 2:47 pm
(@eagleshot)
Posts: 32
Eminent Member
Topic starter
 

@admin Perfect - thank you for the quick implementation. I will deploy some systems next week (probably around thursday) so if you already have a (preliminary) firmware or that you could share or release it before that would be awesome. I will also do some testing anyways, so I will share my feedback as well. 😀

 
Posted : 09/06/2024 2:59 pm
(@eagleshot)
Posts: 32
Eminent Member
Topic starter
 

@admin Any updates? 😀

 
Posted : 11/06/2024 3:43 pm
(@admin)
Posts: 421
Member Admin
 

@eagleshot The modifications for Witty Pi 4 and Witty Pi 4 Mini has been committed to the GitHub repository. Pre-compiled firmware files are also updated. Witty Pi 4 L3V7 has not updated yet, the use case is rather different, so are the configurations.

Register 49 is used for configuring the guaranteed wake mode. Its default value (0) will disable this feature. The highest bit (bit 7) defines the unit (1=day and 0=hour), the lower bits (bit 0~6) define the value (0~127). Which allows to define a duration from 1 hour to 127 days.

The software is not updated yet, so it doesn't know this new reason (12) at the moment. You have to use command to configure this mode too. For example, "i2cset -y 0x01 0x08 49 0x81" will make sure to wake up the device no longer than 1 day. 

 

 
Posted : 11/06/2024 3:55 pm
(@eagleshot)
Posts: 32
Eminent Member
Topic starter
 

@admin Thank you very much, that is awesome!🤩 

 
Posted : 11/06/2024 4:02 pm
(@eagleshot)
Posts: 32
Eminent Member
Topic starter
 

@admin I had issues with the raspberry pi constantly rebooting. According to the amended update on firmware rev7 i assume that you had similar problems? I am testing the new firmware now, do you have any inputs?

 

 

 
Posted : 15/06/2024 10:44 am
(@admin)
Posts: 421
Member Admin
 

@eagleshot had it finished the boot? Or the power was cut during the boot?

The amended Rev 7 firmware adds ~3 min delay for performing the first low voltage detection. This will give some time for rush fixings if the low voltage threshold was not properly set.

 
Posted : 15/06/2024 11:25 am
(@eagleshot)
Posts: 32
Eminent Member
Topic starter
 

The pi itself finished booting and shut down properly, the only thing is that it may not properly communicate its state since i shut down my systems manually via „shutdown -h 0“ to save as much power as possible. I also saw the power being briefly cut on the 4G-module that is connected to the pi. The startup reason was listed as low voltage recovery, which is strange, since the system was connected to a lab power supply. Hardware-wise this exact system (including a 4G-module) has previously been running for several months without this issue, which was very strange. The only thing i did was update the daemon software, firmware of the witty pi as well some other changes to the software running on the pi itself. Do you think this could be connected to how i shut down the pi and know why this only occurs now? I will continue to investigate but couldnt really pin-point the issue so far.

Also what do you mean by the terminology „rush fixing“ - i didnt really understand that part.

 
Posted : 15/06/2024 12:10 pm
(@admin)
Posts: 421
Member Admin
 

With certain configuration, low voltage recovery could even happen when powering with lab power supply. What are your settings on these registers?

  • I2C_CONF_LOW_VOLTAGE
  • I2C_CONF_RECOVERY_VOLTAGE
  • I2C_CONF_IGNORE_POWER_MODE
  • I2C_CONF_IGNORE_LV_SHUTDOWN

About "rush fixings/repairs": if your device is powered with battery, and you set the recovery-voltage threshold just a little bit higher than the low-voltage threshold, or you just set the low voltage threshold to a rather high value, there is chance that the battery voltage drops under the low-voltage threshold during the boot. If the device has been remotely deployed, you won't have a chance to fix that because the device will be shutdown during the boot. With the newly introduced 3-minute protection, it will be possible to access the device and correct the configuration within this time window.

 
Posted : 15/06/2024 1:27 pm
(@eagleshot)
Posts: 32
Eminent Member
Topic starter
 

@admin After newly installing everything (OS, Witty Pi daemon and new firmware v7) the problem went away and so far didn't occur anymore. The weird thing is, that it happened irregardless of these 4 settings. It happened in multiple different configuration of those settings, e.g. when both low- and recovery voltage were set and the rest off.

After that, the guaranteed wake mode worked as expected in my first tests. 🤩  Just to confirm my configuration as I only tested it with a shorter duration so far - does "i2cset -y 0x01 0x08 49 0x82" set it to wake up at least every two days?

 

 
Posted : 19/06/2024 10:36 pm
(@admin)
Posts: 421
Member Admin
 

@eagleshot Yes,  "i2cset -y 0x01 0x08 49 0x82" will set 2 days, alternatively you may also use  "i2cset -y 0x01 0x08 49 0x30", which will set 48 hours.

 
Posted : 20/06/2024 8:13 am
(@mhornsby)
Posts: 5
Active Member
 

Hi @admin @eagleshot can you help me out with how I2C_CONF_GUARANTEED_WAKE  works ?

// 8 bits for guarenteed wake configuration.
// bit-0~6: guaranteed wake duration (0~127)
// bit-7: guaranteed wake duration unit (0=hour, 1=day)

Does this mean if bit 7 is 1 and bits 0-6 are say decimal 10 it will wake once a day for 10 days ? And the time of the wake is when the register was written. So if I write at 8am it wakes at 8am.

Or have I totally got that wrong

Thanks

 

This post was modified 2 months ago by mhornsby
 
Posted : 16/07/2024 4:52 am
(@admin)
Posts: 421
Member Admin
 

@mhornsby if you set bit 7 to 1, and write decimal 10 to bit 0-6, that configuration will garentee to wake up your device once within 10 days. It is not accurate, it could wake up the device on the 8th or 9th day, at any hour.

The way it works, is to add up a counter, and wake up the device when the counter exceeds the preset threshold. That counter starts counting after your Pi is off. It counts once per second but it is not very accurate, so please do not rely on it. It is there as a remedial measures, when some configurations were not well set, you get the chance to remotely access the device to fix those.

 
Posted : 16/07/2024 10:33 am
Page 2 / 3
Join Waitlist We will inform you when the product arrives in stock. Please leave your valid email address below.