btsimonh

Results 130 comments of btsimonh

as a sticking plaster for first flash, yes. But if it's highlighting a general issue on MQTT reconnect which could be a cause for some reported failures.... it's a clue...

static memory -> no heap fragmentation. heap fragmentation -> certain death over a period of time. Ideally, in an embedded system, you would have NO regular malloc in normal use....

I guess it's early code, before we changed some log filtering methods.

OSX signing is evil. Basically, you can't sign something which has had stuff appended to it (like a new nexe app has). I recently spend 2 weeks making my (heavily...

yes, actually build node 12.13.0 version in dec, and the process works fine. Remember, your executable CANNOT have anything appended to it - your packaged filesystem MUST be separate or...

my nexe is fairly 'standard' - its the filesystem which is special (and proprietary). Needless to say, you need the exe to be complete and not appended to, and your...

The signing is: sudo codesign -vvvv --force --options runtime --timestamp --entitlements ./osx-entitlements.plist -fs "my stuff" ./dmg.12.13.0/myapp.app and test: echo test signing codesign -dv --verbose=4 ./dmg.12.13.0/myapp.app echo test signing with spctl...

Additional info which may help others: I'm using a custom patch to delete parts of the nodejs build before a rebuild. in combination with the build:true flag, this forces enough...

to add: The inspiration is from this thread: https://www.elektroda.com/rtvforum/topic3850712.html#19824097

Ref bk7231, I have published two repos on github: https://github.com/btsimonh/hid_download_py https://github.com/btsimonh/tuya-iotos-embeded-sdk-wifi-ble-bk7231t The 'downloader' can read/write but also unpackage/decrypt original firmware. The SDK is a 'light touch' modified SDK (including @p.kaczmarek2...