Search found 795 matches
- 15 April 2018, 21:26 PM
- Forum: ZBasic Language
- Topic: Metronome?
- Replies: 3
- Views: 7117
- 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...
- 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...
- 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 ...
- 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.
- 24 January 2014, 22:04 PM
- Forum: ZBasic Language
- Topic: AN222 does not compile
- Replies: 2
- Views: 1894
- 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:112: Error: reference to undefined identifier "f_wri...
- 05 January 2014, 14:24 PM
- Forum: ZBasic Language
- Topic: PWM/PWM8 Channel Interaction
- Replies: 4
- Views: 2613
- 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:
Be careful because it suppresses it for every routine.
Code: Select all
--warn=no-never-returns
- 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 ...
- 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...
- 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...
- 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(1 to 100) as Byte Public Sub Main() Call OpenPWM8(1, 50.0, z...
- 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...