Search found 795 matches

by mikep
06 February 2019, 17:41 PM
Forum: General
Topic: ZX-128A4U
Replies: 4
Views: 8900

There isn't a board with everything you want. The closest would be something like the MT-DB-4. You would have to attach a USB-TTL Serial converter to the RX/TX. You would also need to program your own ZX bootloader/firmware and figure out the pins to use for everything.
by mikep
15 April 2018, 21:26 PM
Forum: ZBasic Language
Topic: Metronome?
Replies: 3
Views: 7117

I built a "C" based metronome 12 years ago for my kids who play music based on a Circuit Cellar AVR prize winner from 2004 . It was fine for a while but as they became more accomplished they moved to a more professional Metronome like this one from Korg which only costs <$25. I have the Ea...
by mikep
15 April 2018, 18:18 PM
Forum: ZBasic Language
Topic: 64 bit product
Replies: 12
Views: 12620

Re: 64 bit product

Ha! I saw that subject line and immediately thought I'd be reading about a new 64-bit ZBasic product. Yeah! Alas, no. A skilled programmer could create a 64-bit integer and floating point library using all of the constructs that already exist in ZBasic. Wrapping some 64-bit C code in native mode wo...
by mikep
14 April 2018, 14:42 PM
Forum: ZBasic Language
Topic: 64 bit product
Replies: 12
Views: 12620

As no-one has replied to this, I will give you a few hints without actually writing the full code for you. Math is shown in italics and code in bold . I don't know what you are going to do with the 64-bit answer but you will need a way to store it as two 32-bit integers. Assume we have a constant fo...
by mikep
20 February 2014, 19:09 PM
Forum: ZBasic Language
Topic: FFT?
Replies: 3
Views: 2105

Save yourself a lot of trouble and use one of the C function libraries that already exists and wrapper the native code. You can do it all from scratch but look out for all of the shortcuts people have used such as DFTs, fixed point arithmetic, dividing by powers of 2 etc. I have only done FFTs on a ...
by mikep
30 January 2014, 16:39 PM
Forum: ZBasic Language
Topic: Comms to 14cux ecu
Replies: 7
Views: 2784

Have you seen this google project for the ECU? Probably provides a very good start for what you need. You could use the C code from the library in a ZBasic native mode application.
by mikep
24 January 2014, 22:04 PM
Forum: ZBasic Language
Topic: AN222 does not compile
Replies: 2
Views: 1894

Thank you for the quick fix. It compiles but unfortunately my SD card is not recognized ("di" interactive command returns 1 instead of 0). I will have to investigate further myself.
by mikep
23 January 2014, 23:50 PM
Forum: ZBasic Language
Topic: AN222 does not compile
Replies: 2
Views: 1894

AN222 does not compile

Probably something very simple, but this source code for this example does not compile. I get a whole set of errors which point to the .H file definitions not making into the ZBasic source compile e.g. <snip> FatFS.bas&#58;112&#58; Error&#58; reference to undefined identifier "f_wri...
by mikep
05 January 2014, 14:24 PM
Forum: ZBasic Language
Topic: PWM/PWM8 Channel Interaction
Replies: 4
Views: 2613

I have not heard of this before. Is this coupling an "error" in the ATMega1284P design? It's nothing more than a signal being induced on another conductor, typically by capacitive coupling. It also know as "crosstalk". The effect can be seen using an oscilloscope. Usually, it do...
by mikep
05 January 2014, 14:18 PM
Forum: ZBasic Language
Topic: Minor irritation
Replies: 3
Views: 1922

The following line in your PJT file or on the command line will suppress the warning:

Code: Select all

--warn=no-never-returns
Be careful because it suppresses it for every routine.
by mikep
02 January 2014, 19:32 PM
Forum: ZBasic Language
Topic: PWM/PWM8 Channel Interaction
Replies: 4
Views: 2613

That does seem to help. Why does OpenPWM not automatically set the port as an output? You would need to either call it twice or set both OCR ports. Worst case add something to the documentation and example code which sets the port as an output, acquires the timer semaphore and then calls OpenPWM. I ...
by mikep
02 January 2014, 0:10 AM
Forum: ZBasic Language
Topic: Comments on AN217
Replies: 2
Views: 2048

You may have misunderstood my intent. The original routine contains floating point math. I removed that math from the routine and used it outside only for displaying the output value for humans. For code purposes I suggested returning an integer and then do integer comparisons like this: Private Con...
by mikep
01 January 2014, 20:35 PM
Forum: ZBasic Language
Topic: Compiler problem always assuming Software UART
Replies: 2
Views: 1856

Re: Compiler problem always assuming Software UART

If your app doesn't use any SW UART channels, you can inform the compiler thus by using: Option ComChannels 0 While I understand the intent of protecting the programmer from self-induced errors, I would also say that the solution is non-obvious. Either some text should be added to the chapter on na...
by mikep
01 January 2014, 15:07 PM
Forum: ZBasic Language
Topic: Compiler problem always assuming Software UART
Replies: 2
Views: 1856

Compiler problem always assuming Software UART

When the compiler doesn't know the value of the port in DefineCom, it assumes it is always a Software UART which is incorrect. This is only true for DefineCom3. The following code 'Private inputQueue&#40;1 to 100&#41; as Byte Public Sub Main&#40;&#41; Call OpenPWM8&#40;1, 50.0, z...
by mikep
01 January 2014, 11:55 AM
Forum: ZBasic Language
Topic: Eliminating use of PulseOut from AN220 - Parallel LCD
Replies: 0
Views: 4234

Eliminating use of PulseOut from AN220 - Parallel LCD

Application note AN220 is "Interfacing a Parallel LCD". For native mode devices it is possible to eliminate the use of PulseOut() and therefore remove the dependency on a timer, freeing it up for another use. The trick is to use the new library functions recently introduced named DelayMicr...