Search found 17 matches

by JimG
21 May 2017, 8:12 AM
Forum: ZBasic IDE
Topic: variable color
Replies: 1
Views: 4422

Found it. It's just lumped with default font, eg.
style.*.32=$(font.base),fore:#505000
by JimG
19 May 2017, 18:15 PM
Forum: ZBasic IDE
Topic: variable color
Replies: 1
Views: 4422

variable color

What is the keyword to change the color of variables?

I found most of the other items, but I can't find this one.
by JimG
28 April 2017, 14:36 PM
Forum: ZBasic IDE
Topic: box comment
Replies: 0
Views: 6851

box comment

is there a way to un-box comment that just isn't showing up in the edit menu?
by JimG
25 April 2017, 8:41 AM
Forum: ZBasic IDE
Topic: endif vs end if
Replies: 1
Views: 4578

endif vs end if

Is there somewhere in the SciTE setup that I can tell it to automatically convert "endif" to "End If"?
After writing endif for decades in many different compilers, I just can't seem to remember to type "End If".
by JimG
24 April 2017, 12:18 PM
Forum: ZBasic for Generic Targets
Topic: Has anyone used the Daytime protocol on an esp8266?
Replies: 4
Views: 7173

Thank you very much. I understand that real life comes first, and am very appreciative of the efforts you have put into making ZBasic work with the esp.
by JimG
23 April 2017, 11:20 AM
Forum: ZBasic for Generic Targets
Topic: esp8266 wifi.getconfig not giving correct mac address
Replies: 0
Views: 7103

esp8266 wifi.getconfig not giving correct mac address

I'm not getting the correct mac address, am I doing this correctly? dim curssid as string,curpw as string,b(6) as byte call wifi.getconfig(@curssid,@curpw,@b) debug.print curssid debug.print curpw debug.print cstrhex(b(0));"&#5...
by JimG
21 April 2017, 18:04 PM
Forum: ZBasic for Generic Targets
Topic: Has anyone used the Daytime protocol on an esp8266?
Replies: 4
Views: 7173

Daytime Protocol

After several weeks of struggle, I'm still having problems getting this protocol to work consistently. I've gotten it to work pretty good, but I would like a better success rate for attempts. I wrote the below program to help figure out the best way to code this, and these are typical results- -----...
by JimG
08 April 2017, 18:21 PM
Forum: ZBasic for Generic Targets
Topic: esp8266: having trouble with the net.connect command hanging
Replies: 8
Views: 10119

So I did the timing tests over with code to do the timing. Here is the quicky and messy code section- dim constart as unsignedlong dim conend as unsignedlong dim condel as unsignedlong dim contime as unsignedlong dim csecs as Single dim tps as unsignedlong dim timeout as integer = 75 dim timeoutflt ...
by JimG
08 April 2017, 15:18 PM
Forum: ZBasic for Generic Targets
Topic: esp8266: having trouble with the net.connect command hanging
Replies: 8
Views: 10119

It works. Thanks. I know us freeby users are not your top priority, I appreciate the prompt response. Except for a few times when the watchdog timer kicked in for unknown reasons, preceding Net.Connect with Net.SetTimeout now causes connect to return in a period of time rather than just going away f...
by JimG
07 April 2017, 21:04 PM
Forum: ZBasic for Generic Targets
Topic: esp8266: having trouble with the net.connect command hanging
Replies: 8
Views: 10119

Here's what came out- >"F:\ZBasic\zbasic.exe" --target-device=ESP8266 --directory="F:\ZBasic\progs\testtcp/" --project="ClientTCP.pjt" make: Entering directory `F:/ZBasic/progs/testtcp/zb_hHW8Nu' xtensa-lx106-elf-gcc -c -DZBASIC_APP -DZB_...
by JimG
07 April 2017, 15:49 PM
Forum: ZBasic for Generic Targets
Topic: esp8266: having trouble with the net.connect command hanging
Replies: 8
Views: 10119

Does the file ZBasic\xml\ZBasic.xml have an effect on anything? I was trying to find out what could possible be wrong with the net.connect command since the program occasionally comes to a halt when issuing the command and it is not related anything in my control electronically. The file contains th...
by JimG
05 April 2017, 6:59 AM
Forum: ZBasic for Generic Targets
Topic: esp8266: having trouble with the net.connect command hanging
Replies: 8
Views: 10119

Thank you for your ideas. I tried several things including using two D-cells as a power source, which should have many times the current required and zero noise. Still getting the same problems. I'm keeping stats on results from the various servers one gets from the time.nist.gov pool, and most of t...
by JimG
01 April 2017, 12:13 PM
Forum: ZBasic for Generic Targets
Topic: esp8266: having trouble with the net.connect command hanging
Replies: 8
Views: 10119

esp8266: having trouble with the net.connect command hanging

occasionally, maybe 1 out of four times, the net.connect command never returns to my program. The timeout doesn't trigger and I can find no way for the program to get back control when it happens. Here is a sample debug output showing that the status of everything is the same, and I can find no reas...
by JimG
01 April 2017, 11:54 AM
Forum: ZBasic for Generic Targets
Topic: esp8266: is there documentation for the FRC2 register
Replies: 0
Views: 7808

esp8266: is there documentation for the FRC2 register

All of the example programs for the esp8266 use Register.FRC2_COUNT but I could not find any documentation for what this or any other FRC2 setting might be.
by JimG
26 March 2017, 16:09 PM
Forum: ZBasic for Generic Targets
Topic: Has anyone used the Daytime protocol on an esp8266?
Replies: 4
Views: 7173

After many hours of testing, it mysteriously started working. Went back to the original code, and it also worked. No idea what the problem was. It only works on tcp however. It should work on udp also, but just doesn't.