Skip to content

Instantly share code, notes, and snippets.

Secure boot v2 issue

Description

Unable to configure our ESP32 to run our app using secure boot v2 with our custom partition table (works fine with secure boot v1)

Environment

Hardware

class Collection {
constructor(tablename, driver) {
this.driver = driver;
this.table = tablename;
}
getByIdAsync = function (_id) {
return this.driver.then((driver) => driver.getByIdAsync(this.table, _id));
};