Search found 1086 matches

by basicchip
Wed Feb 06, 2013 5:10 am
Forum: SPI and I2C
Topic: i2c on PRO
Replies: 38
Views: 88365

Re: i2c on PRO

0xF9 is generally some unexpected error condition

I assume you do have pull ups on both i2c pins (generally 5K or less)
by basicchip
Thu Jan 31, 2013 11:42 pm
Forum: Software issues
Topic: UDP packet testing
Replies: 0
Views: 6013

UDP packet testing

We published this Visual BASIC app that exercises both serial and UDP packets that can be used with the ARMweb.
by basicchip
Wed Jan 30, 2013 1:04 am
Forum: Other Hardware interfaces
Topic: QEI and PWM Timers
Replies: 9
Views: 17945

Re: QEI and PWM Timers

QEI and timers are separate and should not interact, maybe what you are seeing is not the cause but an effect. How is the motor grounded (how are the MOSFET signal connections made)? The MOSFET GND (where all that motor current it going should NOT go through the same GND as the controller. If the MO...
by basicchip
Tue Jan 29, 2013 3:01 am
Forum: Other Hardware interfaces
Topic: QEI and PWM Timers
Replies: 9
Views: 17945

Re: QEI and PWM Timers

The Quadrature decoder is separate hardware from the Timers, so I'm not sure how they would interact

I need some more details on how you have them connected up, and what your program is doing.
by basicchip
Tue Jan 29, 2013 1:35 am
Forum: SPI and I2C
Topic: I2C speeds
Replies: 4
Views: 18333

Re: I2C speeds

I2CSPEED is in cor_bitbang.c

Have you ever used grep? There is a version installed with the MakeItC directory.

I allows you to search for text strings in files, and is used by the search in MakeItC, which is another way to find it.
by basicchip
Fri Jan 25, 2013 10:55 pm
Forum: Software issues
Topic: Oberon language support
Replies: 12
Views: 19937

Re: Oberon language support

Hey Chris Thanks for the update, if you want to get some PRO format boards, I can get you a couple with the new LPC1114 and LPC812 too. A board for the LPC4357 is in the works too. We can also save you some time on the ISP download code, which has of course changed again, but I do have it running on...
by basicchip
Thu Jan 24, 2013 10:25 pm
Forum: Other Hardware interfaces
Topic: GET or POST to web server using WiFly Shield in BASIC
Replies: 2
Views: 8529

Re: GET or POST to web server using WiFly Shield in BASIC

some notes -- Sends and receives UDP Connects to a local server to do POST or GET Connects to a remote server to do POST or GET Shows an example GET from www.time.gov to get the current time Serves a web page that displays that current time and hit count Users must fill in their own IP addresses but...
by basicchip
Thu Jan 24, 2013 9:39 pm
Forum: Other Hardware interfaces
Topic: GET or POST to web server using WiFly Shield in BASIC
Replies: 2
Views: 8529

Re: GET or POST to web server using WiFly Shield in C

And this is an example of the code written in C
by basicchip
Thu Jan 24, 2013 9:35 pm
Forum: Other Hardware interfaces
Topic: GET or POST to web server using WiFly Shield in BASIC
Replies: 2
Views: 8529

GET or POST to web server using WiFly Shield in BASIC

Here is some sample code that will use a WiFly (Roving Networks aka MicroChip) shield to do an HTTP GET or POST to a webserver.

This is a good way to use WiFi and gather data on an ARM
by basicchip
Thu Jan 24, 2013 8:22 pm
Forum: Serial Communication
Topic: Visual BASIC serial communication with ARM
Replies: 6
Views: 17357

Visual BASIC serial communication with ARM

We often get asked about communicating between a PC and the ARM in BASIC. The USB connection emulates a serial port and can be used to transfer data/control between the PC and the ARM processor. Attached here is a simple example in Visual BASIC that sets up a communication link between a PC and the ...