eadf

Results 47 comments of eadf

I don't have the tools to measure the max sample rate, but at least it handles the ~45kHz signal of that power meter w/o any losses. This is an interrupt...

I'm curious, what are you trying to implement? From what understand noduino already can use the arduino functions `pinMode()`,`digitalRead()`, `attachInterrupt()` and `digitalWrite()`. And that's all easygpio is capable of (albeit...

You can generate `libeasygpio.o` by simply compiling one of the examples. `readGpio` will generate `libeasygpio.o` @ `./build/dependencies/easygpio` The command`ar`can be used to generate the`.a`from the`.o`file.

I've made some #ifdef conditions removing the easygpio_attachInterrupt and easygpio_detachInterrupt functions if XT_RTOS_NAME is defined. I have no way of testing this with an actual rtos installation, could you test...

rtos sdk does not contain osapi.h, os_type.h and user_interface.h. https://github.com/espressif/esp8266_at/issues/9 I'm working on a workaround.. I can't find any reasonable #define that can tell me if rtos is used or...

Sorry, no - not yet. Have you figured out a way for the compiler to "know" if it's running in rtos? (a standard #define or something)

The compilation process does not quite work that way. Not every .c file that needs to know about rtos includes user_config.h (and they should not), so RTOS much be defined...

I've updated the easygpio.c file in the https://github.com/eadf/esp8266_easygpio repository. This repository just contains a snapshot (git tree) of those files. Sadly I could not find a way to propagate your...

Jeff recently performed a Herculean task, dealing with the massive PR backlog. STM32Hal was one of them, - it comes from a PR dated 2015 (#171). Since it represents a...

I have no experience with git on windows, but perhaps you are using something like this: . It's indicating that the file is modified locally. What does `git status` say?