angyongen

Results 8 comments of angyongen

`recipe.hooks.core.prebuild.01.pattern.windows=cmd /c copy /y {build.source.path}\*.s {build.path}\sketch\` works for me (windows)

new updated command because my previous one had an error when there are no .s files. and also doesnt work if source path has spaces (place this in platforms.local.txt): `recipe.hooks.core.prebuild.01.pattern.windows=cmd...

maybe #78 helps?

realised that the previous error can be solved by copying files using platforms.local.txt hooks `recipe.hooks.core.prebuild.01.pattern.windows=cmd /c copy /y {build.source.path}\*.s {build.path}\sketch\` see issue #78

my sdkconfig was in `tools\sdk\include\config\sdkconfig.h`. the one in `tools\sdk\sdkconfig` was there but changing that didnt work for me

yes i had similar issue for me i had to ``` __asm set1.io __pa, # SERIAL_TX_PIN __endasm; ``` instead of ` //__set1(PA, SERIAL_TX_PIN); // Send 1 on TX Pin`

i found the actual place that needs to be modified is util.h ``` #define __set0(var,bit) __asm__("set0 "_STR_VAR(var)", #"_STR(bit)"\n") #define __set1(var,bit) __asm__("set1 "_STR_VAR(var)", #"_STR(bit)"\n") ``` ``` #define __set0(var,bit) __asm__("set0.io "_STR_VAR(var)", #"_STR(bit)"\n")...

Hi @pfalstad . Kinda want the 4 pin mosfet with the subthreshold current. like in #21. found this that seems to explain in a simpler way [https://studylib.net/doc/18221859/mosfet-operation-in-weak-and-moderate-inversion](https://studylib.net/doc/18221859/mosfet-operation-in-weak-and-moderate-inversion). maybe if i...