stevstrong

Results 112 comments of stevstrong

Thanks a lot for the reply, I will have a look on those functions. I want to use `readDir()` so I changed `FsFile`instance to `FatFile` and it worked. I will...

While looking for a replacement for `isDir(&dir)` I have found `isFileDir(&dir)` in `FsStructs.h`. Is that the correct replacement? I am not sure because the name `isFileDir(&dir)` could mean (**isFile** or...

Which hardware/board are you using? Which software?

@airween The Print class for AVR may have a [problem with the "F()" macro](https://github.com/arduino/Arduino/blob/2bfe164b9a5835e8cb6e194b928538a9093be333/hardware/arduino/avr/cores/arduino/Print.cpp#L114), as also did the [STM32duino](https://github.com/rogerclarkmelbourne/Arduino_STM32/issues/231), where I am involved in. For the Ethernet.begin it would be...

Ervin, sorry I am not that deeply involved in UIP, but I remember I also had several issue with my ENC28J60 module and all associated software (Ethercard as well), that's...

No problem (szivesen :)) As alternative, you could save some cents by [buying a W5100 module](https://www.aliexpress.com/item/TOP-Mini-W5100-LAN-Ethernet-Shield-Network-Module-board-Best/32561025589.html). Advantage of WIZ modules vs. ENC28: lower flash and RAM usage, full Arduino compatibility,...

UPDATE: I made some more research on this issue. Measured the free RAM on main loop level with this function (http://playground.arduino.cc/Code/AvailableMemory), this shows 530 bytes. Furthermore, after reset-restart the ATmega328P...

Hi there, I am facing the same issue as the OP with DKB, tried the same script on trouble page. I made some more research on this and I think...

> For the first observation, without having looked into it in detail, it indeed looks like a bug that the 9050 response code does not result in a Python exception....

I could now break down the issue to the following call stack: https://github.com/raphaelm/python-fints/blob/9e80e6bab933ec2651c34526caec360a0e000d56/fints/utils.py#L321 https://github.com/raphaelm/python-fints/blob/9e80e6bab933ec2651c34526caec360a0e000d56/fints/client.py#L1360 https://github.com/raphaelm/python-fints/blob/9e80e6bab933ec2651c34526caec360a0e000d56/fints/dialog.py#L34-L37 https://github.com/raphaelm/python-fints/blob/9e80e6bab933ec2651c34526caec360a0e000d56/fints/dialog.py#L47-L85 https://github.com/raphaelm/python-fints/blob/9e80e6bab933ec2651c34526caec360a0e000d56/fints/dialog.py#L115-L158 In the dialog.send() function: - no callbacks passed to `connection.send()` function (line 137),...