Search found 23 matches

by kcoelho
Tue Sep 03, 2019 1:30 pm
Forum: Hardware Projects
Topic: Network LAN
Replies: 12
Views: 38825

Re: Network LAN

Hmm..I looked around on the loboris forum and on his Github, but I'm still not entirely sure how much more work/tweaking would have to be done. I am able to do API calls to the methods in the LAN class but once called, they do not seem to work. Definitely some driver related work has to be done rel...
by kcoelho
Fri Aug 30, 2019 3:45 pm
Forum: Hardware Projects
Topic: Network LAN
Replies: 12
Views: 38825

Re: Network LAN

Hi rpr, It uses a LAN8710 chipset, which should be quite similar. I'll take a look into that and let you know the outcome. Thank you Thanks. I'm interested. Hmm..I looked around on the loboris forum and on his Github, but I'm still not entirely sure how much more work/tweaking would have to be done...
by kcoelho
Fri Aug 23, 2019 8:23 pm
Forum: Hardware Projects
Topic: Network LAN
Replies: 12
Views: 38825

Re: Network LAN

If the board uses a lan8720 chipset, the loboris fork for the esp32 has support in micropython. Loboris made some small hardware mods to the lan8720 boards he was using. There is at least a thread on his forum. https://loboris.eu/forum/showthread.php?tid=334 Loboris commented that he thought his co...
by kcoelho
Thu Aug 22, 2019 1:03 pm
Forum: Hardware Projects
Topic: Network LAN
Replies: 12
Views: 38825

Re: Network LAN

I assume you've seen the official docs . Implementation of the network module is port specific: look in the source tree for modnetwork.c . Thanks, I think I understand your point. While I can import the network and usocket modules in REPL, I do not have access to the AbstractNIC class and the socke...
by kcoelho
Wed Aug 21, 2019 9:21 pm
Forum: Hardware Projects
Topic: Network LAN
Replies: 12
Views: 38825

Re: Network LAN

pythoncoder wrote:
Mon Aug 19, 2019 5:34 pm
What hardware are you using?
I am still having trouble with this. Is there anywhere I could be referred to for assistance?
by kcoelho
Mon Aug 19, 2019 6:11 pm
Forum: Hardware Projects
Topic: Network LAN
Replies: 12
Views: 38825

Re: Network LAN

It's a custom board but very similar to the Olimex - e407.

Additionally, after adjusting some drivers to enable this, my ADC keeps spitting out 0 values. It used to be working perfectly before
by kcoelho
Mon Aug 19, 2019 2:07 pm
Forum: Hardware Projects
Topic: Network LAN
Replies: 12
Views: 38825

Network LAN

Hello,

Where can I find more information / documentation about the network.LAN functionality?

Trying to use it for a project but cannot seem to find anything

Thank you
by kcoelho
Fri Aug 16, 2019 3:55 pm
Forum: General Discussion and Questions
Topic: Build Errors lwip
Replies: 4
Views: 22208

Re: Build Errors lwip

This is resolved. Thank you. I am however, having issues understanding the network library/class On Linux after I enter the REPL command prompt and enter: import network lan = network.LAN() The command prompt closes and goes back to the terminal. Not sure why this happens. Also, where could I find m...
by kcoelho
Fri Aug 16, 2019 3:37 pm
Forum: Other Boards
Topic: How to use network.LAN on NUCLEO_F429
Replies: 4
Views: 3918

Re: How to use network.LAN on NUCLEO_F429

Hi,

When I enter the command "network.LAN()" in the REPL prompt, the prompt itself shuts down.

Any ideas as to why this happens?
by kcoelho
Fri Aug 16, 2019 1:36 pm
Forum: Hardware Projects
Topic: Errors when trying to build
Replies: 4
Views: 4649

Re: Errors when trying to build

Thanks for that. It seems to have solved that issue. I also had to remove this line from mpconfigboard.h : #define MICROPY_PY_LWIP (1) But now the build is failing at eth.c file with the following error: ... CC eth.c eth.c: In function 'eth_mac_init': eth.c:163:5: error: implicit declaration of func...