Search found 414 matches

by olzeke51
Wed Aug 13, 2014 3:26 pm
Forum: Software issues
Topic: BasicTools - variables address tool
Replies: 1
Views: 5231

Re: BasicTools - variables address tool

More info -- Prostart board
ran the "BLINKY" program - only one integer variable - but still had the 12 <OK> to exit
**
would the kernel have anything to do with it??????
by olzeke51
Wed Aug 13, 2014 3:07 pm
Forum: Software issues
Topic: ArmBasic VAL function
Replies: 9
Views: 14382

Re: ArmBasic VAL function

thanks for the ideas - I'll play around with them ' I have two arrays -named "rtc"- one is byte and one is $$$string, that way I can keep them in sync with each other - per the type of data I need. but my ideas are not panning out quite like I initially thought. ' my 'old-style' is showing through ,...
by olzeke51
Wed Aug 13, 2014 3:01 pm
Forum: Software issues
Topic: BasicTools - variables address tool
Replies: 1
Views: 5231

BasicTools - variables address tool

WoW - I really like having the variables and the variable addresses in a alphabetized order ! ' WoW- WoW on having the variables addresses now !! to a nuts an volts guy - that is icing on the cake !! THANKS ' now for some work - I get this when I "x" out of the variables address popup window:(this i...
by olzeke51
Wed Aug 13, 2014 1:08 am
Forum: Software issues
Topic: ArmBasic VAL function
Replies: 9
Views: 14382

Re: ArmBasic VAL function

I DIMmed rtc$ as a string, and then poke values into it to represent, the hours/mins/secs etc so that I could print the whole thing at one time. so rtc$(5) is the 6th byte in the string which is a 'short' string - very short - 1 byte. ' I was having trouble printing a 'byte array' and thought a stri...
by olzeke51
Tue Aug 12, 2014 2:17 pm
Forum: Other Hardware interfaces
Topic: SuperPro P2.2 & P2.3
Replies: 5
Views: 18456

Re: SuperPro P2.2 & P2.3

which last two pins ??? at the end of the digital pins??
one looks like an analog gnd, and the other is a vref,
just past digital 13 [arduino nomenclature]
by olzeke51
Tue Aug 12, 2014 2:52 am
Forum: Software issues
Topic: ArmBasic VAL function
Replies: 9
Views: 14382

ArmBasic VAL function

Is the VAL keyword setup so as to be able to "translate" a string created by an index into a string??
ie p= val(rtc$(5))
I'm getting this error:
o=val(rtc$(4))
-ERROR C:/Coridium/Basic/Examples/Bchip_event_logger06.bas: 37: Expected ), found (4))
by olzeke51
Tue Aug 12, 2014 2:42 am
Forum: Other Hardware interfaces
Topic: 315 Mhz RF Receiver and Transmitter pair
Replies: 7
Views: 24550

Re: 315 Mhz RF Receiver and Transmitter pair

basicchip is onto something. use baud(x), rxd(x),txd(x) for one - either input or output then use baud(n), rxd(n), txd(n) for the the other function basically you are creating a (sort-of) loop back function - but using two channels of UART TXD of sending connected to the RXD of the receiver. this al...
by olzeke51
Wed Aug 06, 2014 9:35 pm
Forum: Kitchen sink
Topic: Documentation, broken link
Replies: 63
Views: 143529

Re: Documentation, broken link

online help, contents - in the left pane Hardware Library ' *pointers (arm peripheral access) ' the link at the bottom of the page - "Hardware Library Functions' ' *** takes you to the "Mathematical Functions" with a picture of the Basic(Chip) Board ' *** which is an item under "Runtime Library"
by olzeke51
Wed Aug 06, 2014 8:43 pm
Forum: Projects
Topic: LPC812 - HVAC controller - eval chip
Replies: 20
Views: 44420

Re: LPC812 - HVAC controller - eval chip

PROJECT ON HOLD, I need to get the well pump monitor(aka 'simple event monitor') done now - it is drought season here in So. Oregon.
by olzeke51
Wed Aug 06, 2014 7:41 pm
Forum: Projects
Topic: Simple event logger
Replies: 1
Views: 6966

Simple event logger

I have a ProStart board and wanted to put an RTC with it. I found an Adafruit Arduino shield with RTC and MMC socket. The RTC is a DS1307 which uses the I2C protocol for data transfer. The timeclock portion uses packed BCD to send/store data values. Using ArmBasic has presented a challenge as there ...