Search found 3096 matches

by dkinzer
25 March 2025, 13:31 PM
Forum: ZBasic Native Mode
Topic: project file file paths
Replies: 2
Views: 1581

Re: project file file paths

This excerpt from a project file works for me:

Code: Select all

foo.bas
AD9851_ftw_func.c
../Temp/myproj.bas
Can you provide an example that doesn't work as you expected?
by dkinzer
17 March 2025, 18:08 PM
Forum: ZBasic Native Mode
Topic: How to revive a bricked device
Replies: 4
Views: 11597

Re: How to revive a bricked device

The ZX devices are put into "monitor" mode by wiggling the ATN line in a prescribed way. This causes the device to be reset in a way that causes it to jump into the monitor code in which it will accept download commands. You might try using the zload appication to download a prototypical &...
by dkinzer
27 September 2024, 10:12 AM
Forum: ZBasic for Generic Targets
Topic: PutQueueStr
Replies: 1
Views: 8284

Re: PutQueueStr

There may be two limitations combining to produce the result you are seeing. Firstly, because the number of characters in a string is contained in a Byte, the maximum string size is 255 characters. There is no way to get around this limit. See sections 2.11 and 3.28 of the ZBasic Language Reference ...
by dkinzer
27 March 2024, 16:49 PM
Forum: ZX-24
Topic: ZX24u PWM
Replies: 1
Views: 10106

Re: ZX24u PWM

I looked at the xMega datasheet and the ZBasic code and discovered that the PutPin() prior to setting up PWM are not required for the xMega devices. The ZBasic code for PWM configures the corresponding to be an output so that s why it works without the PutPin() call. This is a deficiency in the docu...
by dkinzer
01 March 2024, 17:53 PM
Forum: ZBasic for Generic Targets
Topic: c files interacting in strange ways
Replies: 3
Views: 8092

Re: c files interacting in strange ways

Offhand, I suspect that there may be a register usage issue but it is dangerous to speculate from a distance. I'd be happy to take a look at the code if you would want to send it to me. I'm open to executing an NDA if necessary. Otherwise, it would be best to whittle the code down to the minimum tha...
by dkinzer
05 February 2024, 17:01 PM
Forum: ZBasic for Generic Targets
Topic: Suport for AVR64DD32
Replies: 4
Views: 9655

Re: Suport for AVR64DD32

No definitive word yet. It looks like the hardware may support ZBasic with some changes. I haven't yet discovered if a new version of avr-gcc has been release that supports the new families. If it can be supported, a release of ZBasic for it probably would quite a way off - probably at least a year.
by dkinzer
23 January 2024, 14:41 PM
Forum: ZBasic Language
Topic: New Compiler Release, New Devices
Replies: 4
Views: 16515

Re: New Compiler Release, New Devices

That's an interesting observation. Thanks.
by dkinzer
23 January 2024, 14:39 PM
Forum: ZBasic for Generic Targets
Topic: Suport for AVR64DD32
Replies: 4
Views: 9655

Re: Suport for AVR64DD32

No. I'll take a look at it to see if it might be possible.
by dkinzer
09 May 2021, 16:19 PM
Forum: ZBasic Language
Topic: Updated Forum Software
Replies: 2
Views: 44436

Re: Updated Forum Software

I was able to find a "Digests" extension and it is now installed and working. If you want to receive digests, log in and then launch the User Control Panel (click you forum name near the top on the right side and choose it from the menu). Once in the User Control Panel, select the Digests ...
by dkinzer
05 May 2021, 17:11 PM
Forum: ZBasic Language
Topic: Updated Forum Software
Replies: 2
Views: 44436

Updated Forum Software

After fighting with the older phpBB v2.x code for a few years now each time the web hosting company upgrades the PHP version they're using, I finally relented and just installed the latest phpBB v3.x. Since the code is PHP 7 compatible, that should simplify coping with future host server upgrades. A...
by dkinzer
24 March 2021, 15:32 PM
Forum: ZBasic Language
Topic: ZBasic Generic Target License
Replies: 2
Views: 8216

The Generic Target License doesn't address that issue because the source code and build files are distributed with the ZBasic Compiler. Conceivably, one could build the ZBasic bootloader without having a Generic Target License. However, the ZBasic bootloader isn't of much use without the Generic Tar...
by dkinzer
16 March 2021, 7:39 AM
Forum: ZBasic for Generic Targets
Topic: Wemos/Lolin D1 Mini
Replies: 1
Views: 6485

I haven't tried it but based on a quick scan of the Wemos Mini website page, I would guess that it would work. You would need to use Option DeviceParameter FlashSize to specify the actual Flash size.
by dkinzer
14 December 2020, 11:02 AM
Forum: ZBasic Language
Topic: WS2811
Replies: 1
Views: 7545

Re: WS2811

Even OutputCapture on a ZX24x/u can't handle this fast transitions ..? That's true. It might be possible to bit-bang the protocol but the RTC interrupts (and others) may interfere with the timing. Certainly you'd have to have interrupts disabled for the duration of a transmission sequence. I haven'...
by dkinzer
25 November 2020, 16:10 PM
Forum: ZX-24
Topic: Timer speeds
Replies: 3
Views: 8934

How would I start on [counting using an external clock] For starters, you'll need to get the xmega A manual and read up on the timers, the event system and interrupt handlers. http://ww1.microchip.com/downloads/en/DeviceDoc/doc8077.pdf The high level overview would be something like this: - configu...
by dkinzer
25 November 2020, 13:33 PM
Forum: ZX-24
Topic: Timer speeds
Replies: 3
Views: 8934

There are two "timer speed" registers: Register.TimerSpeed1 and Register.TimerSpeed2. The 1 and 2 have nothing to do with the timer that may be being used. Rather, Register.TimerSpeed1 is used with some I/O routines and Register.TimerSpeed2 is used for other I/O routines. For InputCapture(...