BXDism is proving to be an invaluable tool when working with multiple tasks. The output though, is strange sometimes. I have a task running that uses a array...
... bxDism does a static analysis of the MPP and BXB files to figure out what is being used. For example the line of code HobbsTotal = Hobbs(I) results in the...
Thanks Mike. I read your articles on the internals of the BasicX, although much of it is over my head. I'm slowly getting up to speed on all of this though. ...
Hey, I was wondering if it were possible in the code to: 1) Split a 16 bit hex number into high and low bytes 2) Operate under the negative hex rules (With...
... There are several methods. One is: lsByte = cByte(i16bits mod 256) msByte = cByte(i16bits \ 256) ... That's called two's-complement notation and it is...
Hello ! I have an extra Innovate XD-16 display, and i'd like to display speed from an gps ... I can handle getting speed from the gps , but driving this...
... "The serial data consists of packets of 16 bytes (in normal operation every 81.92 msec). The packets are organized as eight 16 bit numbers in big endian...
I tried and and I'm getting some completly random results, The code is for the Motor Mind C, heres what I got: Public Motor1 as integer Public Motor1High as...
Thanks, I implemented it into my Motor Mind C communication code and got some random results, heres the code I tried: Public Motor1 as integer Public...
I hate to double post but I've realised that half my problem is that I've mixed up high and low bytes, regardless I still can't get negatives to work..., ...
Hi ~ I have a question about PWM output of BX24. I use BX24's PWM output to control a dc motor with driver LM18200L, and I set the PWM rate-setting as 1 and...
Hi~ Question about PWM output: I am using BX24¡¦s PWM (pin26) to control a 24V DC motor with a driver LMD18200, and it has no problem at all. However,...
... Timer1 has two output pins; on the BX-24, pins 26 and 27. They are electrically identical except that pin 26 has an LED and dropping resistor connected to...
Odd. It's now 17:00 USEDT. The note I wrote about PWM, at 07:00 this morning - on the Yahoo group web site, like this one is being written - just appeared on...
I have found this with other e-mails, but not the basicx group. [Non-text portions of this message have been removed]...
andycamach@...
Apr 3, 2006 9:37 pm
21193
I've been doing a few posts from the groups.yahoo.com web site and have been seeing this problem, about a 30 minute to one hour delay, it's actually why I...
Sorry, I've checked my pervious e-mails and it has been happening. [Non-text portions of this message have been removed]...
andycamach@...
Apr 4, 2006 1:25 am
21195
Hi All, I am new to BASICX although I've programmed on and off for quite a while. I am trying to use the LCD+ to read a 4x4 keypad (home made). I have made...
Hello all, I am interested in designing a 4x4 A/V matrix switch, and was wondering if anyone has done this before. I could go buy one for around a grand, but I...
OK, I'm out of RAM, and the application just keeps getting bigger... This is going to be interesting.. As I look for ways to reduce RAM usage, I am open to...
HI Tom I used to work on Medical CT scanners , they use slip ring technology to drive a fast rotating ganrty with a high voltage xray tube mounted in it, as...
Hi, Fairchild semi makes both video and audio switcher chips. http://www.fairchildsemi.com/ds/FS%2FFSAV331.pdf This link is for a $3 4x1 chip, with 4 of these...
... You might be over optimizing too early. You need to look at the whole program. Changing an algorithm or implementation in another place might free up lots...
... What about calling Sleep(3.0) after detecting a closed switch, then checking it again? This does not guarantee it has been closed continuously but, if you...
Have you considered using mercury slip ring? They are not suitable for all applications but they they are pretty clean when used within their specifications. ...
Using that sleep(3.0) method but checking the button every 10th of a second and if the button is on in that 10th of a second add 1 to a variable and if the...
andycamach@...
Apr 4, 2006 11:48 pm
21206
That was my first thought, except, as you mentioned, the non-continuous button press. Currently, I'm trying to figure out how to do something like, check the...