Thomas Friedrichsmeier
Thomas Friedrichsmeier
> What is the problem when both devices uses the same frequency? If both devices are fine with the same SPI settings, then all is fine. If the other device...
This PR does not set the bus back to 8 bit. Although that would be trivial to add inside the new endTransmission(), I think it is wrong to assume that...
You are right, endTransaction() does not do anything on F1, and essentially I just added it for style. In the AVRs endTransaction() re-enables interrupts, that have been (optionally) blocked in...
It's been a while since I last looked at this. However, as far as I recall, the problem is that **the ILI9341-code does not call beginTransaction at the begin of...
You are right, the suggested endTransaction()-function does not actually do anything, it is merely added for completeness and to allow good coding style. I don't really care about that bit....
True, lib2 will need to either provide the same, *or* to init the SPI bus on every call. Quite a number of libs don't have to worry about performance so...
There is no support for this in EmbAJAX. Also, I don't have an ESP32 camera to play with, so all of the following is guesswork. However, I *believe* this will...
No problem. This is not currently possible. As a matter of fact, allowing dynamic lists (also at other places in the lib) is something I intend to add. I have...
All right. Allowing for a dynamic option list seemed like quite a separate problem, after all. Here's a first shot at this. It still has a lot more quick-and-dirty hacks...
As to your javascript attempt, I think the problem is here: ```[...];test function () {alert("HelloWorld");this.sendValue('hello');}[...]``` should be: ```[...];function test() {alert("HelloWorld");this.sendValue('hello');}[...]``` > As I have already indicated, I am far away...