Search found 614 matches

by SeeCwriter
Tue Mar 01, 2022 9:35 am
Forum: NetBurner Software
Topic: Port scan issue
Replies: 6
Views: 3874

Re: Port scan issue

Does v3.3.7 correct this issue? It wasn't clear from the releases notes if that was the case.

Also, projects built with v2.9.5 exhibit the same behavior.
by SeeCwriter
Thu Feb 24, 2022 12:41 pm
Forum: NetBurner Software
Topic: Bootup output
Replies: 2
Views: 1454

Re: Bootup output

In the Boot section of the module's Configuration webpage I found a BootQuiet option, and that removed the second abort message.
by SeeCwriter
Wed Feb 23, 2022 1:49 pm
Forum: NetBurner Software
Topic: Bootup output
Replies: 2
Views: 1454

Bootup output

Using v3.3.6 with a NANO, when the NANO boots up there are two abort messages out the serial port. Is that normal, and is there a way to remove one?

Code: Select all

Waiting 2sec to start 'A' to abort

Primary network interface configured for DHCP
MAC Address = 00:03:f4:0e:e9:c1
Type "A" to abort boot
by SeeCwriter
Fri Feb 18, 2022 10:02 am
Forum: NetBurner Software
Topic: Port scan issue
Replies: 6
Views: 3874

Port scan issue

I have a NANO project built with v3.3.6. I ran into a problem when I ran a port scan on the module where I can no longer make a TCP connection after the port scanner scans the TCP port I'm using. The port scanner is a free app I found named "Angry IP Scanner". What it does is, first, it se...
by SeeCwriter
Wed Feb 16, 2022 9:27 am
Forum: NetBurner Software
Topic: Dir Path errors in v3.3.6
Replies: 2
Views: 1657

Dir Path errors in v3.3.6

I installed v3.3.6, enabled SSH in predef.h, and imported my NANO project from v3.3.5, which also had SSH enabled. When building my project I got an error about settings.h included in NbWolfSsh.h not found. I modified the include path in NbWolfSsh.h to add "ssh" to the settings.h path. Tha...
by SeeCwriter
Wed Feb 09, 2022 10:08 am
Forum: NetBurner Software
Topic: Setting Time Zones
Replies: 7
Views: 5139

Re: Setting Time Zones

After more research into time zones, I put implementation on hold. There seems to be no standard for time zone names or abbreviations. For my own education, could someone explain or point me to where I can find the answer about the purpose of alpha prefix to the GMT offsets used in the posix strings...
by SeeCwriter
Wed Feb 09, 2022 8:26 am
Forum: NetBurner Software
Topic: HttpsUploadCert example
Replies: 10
Views: 12875

Re: HttpsUploadCert example

Before I send you the project I wanted to delete the project and recreated it to make sure I did it correctly. I had forgotten that the example program has none of the EFFS files, such as includes "effs_std.h" in main.cpp. The only place I found the effs files was in nburn/examples/_common...
by SeeCwriter
Tue Feb 01, 2022 1:24 pm
Forum: NetBurner Software
Topic: HttpsUploadCert example
Replies: 10
Views: 12875

Re: HttpsUploadCert example

I'm sorry, I got busy with something else and forgot. I just tried the FlashErase, and it didn't make a difference. I'm curious as to how much of example HttpUploadCert is required to be able to upload certificates & keys. I've implemented TLS certificates with v2.9.5 on the MOD5441X, and I only...
by SeeCwriter
Sat Jan 29, 2022 12:53 pm
Forum: NetBurner Software
Topic: Setting Time Zones
Replies: 7
Views: 5139

Re: Setting Time Zones

I was using the function setTimeZoneByName() from the example program. You pass in a timezone name and beginning with the first entry in the array in timezones.cpp, it compares the short name of each timezone with the name passed in. I was just wondering how you envisioned it being used, since there...
by SeeCwriter
Wed Jan 26, 2022 1:53 pm
Forum: NetBurner Software
Topic: Setting Time Zones
Replies: 7
Views: 5139

Re: Setting Time Zones

Looking through the TimeZoneRecord array some more, I found more duplicate short names. One example: {"CST-8CST-8", "(GMT+08:00) Beijing, Chongqing, Hong Kong SAR, Urumqi" , "China Standard Time", "CST", 0 }, How would I select China Standard Time, the search ...