Search found 4 matches

by johnvan
Wed Sep 27, 2023 1:50 am
Forum: NetBurner Software
Topic: MODM7AE70 Interrupt Disable
Replies: 2
Views: 768

Re: MODM7AE70 Interrupt Disable

Mike, Thank you very much for your ClearISR() routine! It works perfectly. The only change I made was to the forward declaration in pin_irq.h. The actual routine returns void and the forward declaration called for it to return uint32_t. Instead of changing the Netburner source I simply incorporated ...
by johnvan
Thu Sep 21, 2023 3:28 am
Forum: NetBurner Software
Topic: MODM7AE70 Interrupt Disable
Replies: 2
Views: 768

MODM7AE70 Interrupt Disable

I'm using a MODM7AE70 module and have one of the I/O pins set up to provide an interrupt whenever that pin is grounded. The interrupt works fine. I use EnableIrq() and DisableIrq() to disable the interrupt whenever I don't want it to occur. These also work fine but my problem is that the interrupt a...
by johnvan
Thu May 11, 2023 12:25 pm
Forum: NetBurner Software
Topic: Retrieving Telnet Client IP Address
Replies: 2
Views: 1775

Re: Retrieving Telnet Client IP Address

That is exactly what I was looking for! Thanks Tom.
by johnvan
Thu May 11, 2023 1:43 am
Forum: NetBurner Software
Topic: Retrieving Telnet Client IP Address
Replies: 2
Views: 1775

Retrieving Telnet Client IP Address

I've got Telnet working on my MODM7AE70 platform using the standard Netburner "Command" library functions. I'm interested in being able to know the IP address of the Telnet Client that logged into my board. I know that the basis for Telnet is a TCP connection (in this case on port 23). In ...