Search found 1086 matches

by basicchip
Tue Mar 21, 2023 8:59 pm
Forum: Other Hardware interfaces
Topic: Digital I/O to Digital I/O
Replies: 1
Views: 585

Re: Digital I/O to Digital I/O

Yes the outputs of one CPU can be connected directly to another CPU. Both the 1756 and 1114 are 3V swing parts, and a 5V tolerant and compatible.
by basicchip
Mon Mar 13, 2023 1:02 am
Forum: Future products
Topic: Build and sell Coridium products in India
Replies: 0
Views: 1582

Build and sell Coridium products in India

There seem to be a lot of people from India joining this forum.

Shipping costs from the US make selling from here to India too expensive. Would there be anyone in India, that would want to build and sell Coridium products there in India?
by basicchip
Tue Jan 31, 2023 12:55 pm
Forum: Future products
Topic: wireless LCD
Replies: 7
Views: 23695

Re: wireless LCD

Not sure what you mean, how about a picture
by basicchip
Tue Dec 27, 2022 7:16 pm
Forum: Software issues
Topic: Linux TclTerm baud rate
Replies: 3
Views: 1154

Re: Linux TclTerm baud rate

Check out the blog post with an updated TclTerm.tcl

https://www.coridium.us/coridium/blog/a ... s-in-linux
by basicchip
Mon Dec 19, 2022 6:16 pm
Forum: Software issues
Topic: Linux TclTerm baud rate
Replies: 3
Views: 1154

Re: Linux TclTerm baud rate

Still don't have a Linux machine up, wsl on windows doesn't run wish (don't know how to configure Xwindows for it) I ordered a power supply for my HP mini, which has Mint on it. Power supply misplaced in the move. You might have to figure out the command line sequence to configure the baud rate for ...
by basicchip
Thu Nov 24, 2022 6:39 am
Forum: Software issues
Topic: BT - Function calling
Replies: 7
Views: 8117

Re: CALLing an #included FUNCtion

Would really need more context to answer this. The example you site compiles and runs correctly. There is a difference between a subroutine defined by LABEL1: ... RETURN and one defined by SUB LABEL2 ... ENDSUB The LABEL1: ... RETURN can never have parameters, so CALL LABEL1 () would be illegal And ...
by basicchip
Tue Nov 22, 2022 12:34 pm
Forum: Software issues
Topic: DOWNTO, Help file
Replies: 1
Views: 741

Re: DOWNTO, Help file

STEP is an optional keyword in FOR statements, true of all BASICs I have seen. If you have a STEP in the statement the compiler expects a value, and in your case the compiler flags it as an error

If there is no STEP keyword then 1 is assumed.

Code: Select all

FOR i = 3 DOWNTO 0
would be the proper syntax
by basicchip
Sun Oct 30, 2022 10:56 am
Forum: Software issues
Topic: simple Interrupt for PROstart
Replies: 6
Views: 1624

Re: simple Interrupt for PROstart

The details of these interrupts are in the NXP user manual. To change to GPIO0.3 -- INTERRUPT SUB INT_GPIO0 GPIO0_IC = (1 << 3) ' clear interrupt on pin 3 and SUB ON_GPIO0(rise_edge, dothis) ' Setup MUST be done before enabling the interrupt GPIO0_IE = (1 << 3) ' interrupt on GPIO0.3 if rise_edge th...
by basicchip
Fri Oct 28, 2022 7:01 pm
Forum: Software issues
Topic: simple Interrupt for PROstart
Replies: 6
Views: 1624

Re: simple Interrupt for PROstart

Updated the file to change the label to GPIO0.1 for LPC1114

Also program correctly for rising edge interrupt (default was falling edge).
by basicchip
Wed Oct 26, 2022 7:44 pm
Forum: Software issues
Topic: simple Interrupt for PROstart
Replies: 6
Views: 1624

Re: simple Interrupt for PROstart

I will add this to the next release.

This uses the BOOT pin (GPIO0.1) which can be toggled by BASICtools. (I should change the label from EINT0 to GPIO0.1)

Source for
EINT0.bas
(2.98 KiB) Downloaded 208 times
1114int.jpg
1114int.jpg (89.9 KiB) Viewed 1621 times