thedeadliestcatch
thedeadliestcatch
I've been trying this (via https://github.com/mkfrey/u8g2-hal-esp-idf): ``` void task_test_screen() { u8g2_t u8g2; u8g2_esp32_hal_t u8g2_esp32_hal = U8G2_ESP32_HAL_DEFAULT; u8g2_esp32_hal.bus.i2c.sda = CONFIG_I2C_MASTER_SDA_PIN; u8g2_esp32_hal.bus.i2c.scl = CONFIG_I2C_MASTER_SCL_PIN; u8g2_esp32_hal_init(u8g2_esp32_hal); u8g2_Setup_st7567_enh_dg128064i_f( &u8g2, U8G2_R0, // u8x8_byte_sw_i2c, u8g2_esp32_i2c_byte_cb, u8g2_esp32_gpio_and_delay_cb);...
I can confirm that removal of the zener diodes returns I2C communications. Both 3.3V and 5V are impacted.
Excellent to see this being picked up! Also ideal would be to have the messages integrated with the existent capability to pick up syslog traffic from capture interfaces, enabling airgapped...
@weslambert Great work, a sidenote: you may want to add a mention to the documentation that pf/OPNsense and co, might be liable to string truncation. I'm not entirely sure if...
@iskunk Do you have a Dockerfile file or CI config to share? Do you keep an open/public repo here with your patches? I've been looking around but surprisingly nobody seems...
@iskunk Thank you for the quick response time. Yes, I'm interested in setting up a CI for your packages (Gitlab CI based or similar, can do with just about any...
@iskunk This is for a corporate environment where policy explicitly forbids using third-party packages whose provenance and supply chain cannot be guaranteed. There are plenty of resources available, including dedicated...
Why would you trust *our* binaries? If our build process is compromised (or anybody else's), it's a done deal. That is the main concern for most hobbyist privacy-oriented projects: in...
It doesn't seem like that helps @robn , the loading of the keys is not done via mount triggers.
To document this further, for example on Ubuntu (development release): There is a global setting in /etc/default/zfs: ``` # Run `zfs load-key` during system start? ZFS_LOAD_KEY='yes' ``` From /etc/init.d/zfs-load-key: ```...