Search found 40 matches

by zealott
Mon Jan 16, 2023 11:42 pm
Forum: NetBurner Software
Topic: Wifi - Ethernet routing
Replies: 6
Views: 1419

Re: Wifi - Ethernet routing

Ok, explanation retry: On one end I have a MODM7 (192.168.30.2) connected to the SB800EX wired (192.168.30.1) On the other end i have a PC (192.168.30.101) and the same SB800EX (wifi, 192.168.30.100) I want to access the webpage of the MODM7 (30.2) from the PC on the wifi network (30.101). I am unab...
by zealott
Mon Jan 16, 2023 12:20 am
Forum: NetBurner Software
Topic: Wifi - Ethernet routing
Replies: 6
Views: 1419

Re: Wifi - Ethernet routing

It's a simple thing I want to achieve (perhaps not as simple in reality, but sulliwk06's idea could be done).

Basically I have a MODM7AE70-based unit on the SB800EX wired network, and a PC on the SB800EX wifi network. I want to access the M7's webpage from the PC.
by zealott
Wed Jan 11, 2023 4:01 am
Forum: NetBurner Software
Topic: Wifi - Ethernet routing
Replies: 6
Views: 1419

Wifi - Ethernet routing

Hi, SB800EX with Ethernet and Wifi, any hints on how to bridge the two so that external devices on both ends can ping each other? Setup: (I am using WifiAP example) SB800EX Ethernet port is 192.168.30.1 SB800EX Wifi is set to 192.168.30.100 External Unit 1 (PC) is connected to ethernet port and conf...
by zealott
Wed Oct 26, 2022 3:51 am
Forum: NetBurner Software
Topic: NNDK in docker
Replies: 1
Views: 921

Re: NNDK in docker

Nice, thanks!
by zealott
Fri Oct 21, 2022 2:59 am
Forum: NetBurner Software
Topic: set system time in microsecond
Replies: 6
Views: 1278

Re: set system time in microsecond

I would use a <stopwatch.h> that resets at every PPS pulse and add that to the system time (GPS or NTP?) to get the microsecond component.
Would that work?

Cheers,
J
by zealott
Thu May 26, 2022 5:07 am
Forum: NetBurner Software
Topic: Getting CPU statistics
Replies: 10
Views: 2285

Re: Getting CPU statistics

Perhaps, if possible, a cpu timer in front and after the "wfe", (MODM7, flash.cpp, idle task) could measure the time WFE sleeps and derive CPU usage based on that? Do we need a system timer or do the M7 have a CPU tick timer we could access for this usage?
by zealott
Wed May 25, 2022 12:23 am
Forum: NetBurner Software
Topic: Getting CPU statistics
Replies: 10
Views: 2285

Re: Getting CPU statistics

Perhaps it would be good to have this implemented in the toolkit so we don't have to overload things that might change? (just a "easy" CPU usage percentage) Also, on MODM7, there is only the "wfi" instruction, would not having a counter before/after that in the loop increase the ...
by zealott
Wed Mar 09, 2022 6:38 am
Forum: NetBurner Software
Topic: Port scan issue
Replies: 6
Views: 2828

Re: Port scan issue

Has this been fixed in 3.3.7? I don't see anything in the release notes about this issue being fixed, it's similar to something I have experienced a few times but not been able to figure out.
by zealott
Tue Nov 23, 2021 3:11 am
Forum: NetBurner Software
Topic: Post queue by copy, not reference (aka xQueueSend in freertos)
Replies: 2
Views: 1689

Post queue by copy, not reference (aka xQueueSend in freertos)

Hi,

Any thoughts on the best way to provide a thread-safe way to mimic xQueueSend / xQueueReceive in FreeRTOS?
It copies the message itself, not just a reference as NB Queue functions.

Thanks