PDA

View Full Version : Tibbo Special Offer



lester
- 14th January 2008, 21:04
UPDATE: Orders for Tibbo placed before 31st Jan 2008 will qualify for a 10% discount form the prices on our web site. The discount will be automatically applied by us when we process the order.

Crownhill now carry stock of the Tibbo Serial / ethernet devices. Similar to the DIGI ME product and the Lantronics X-PORT products, but lower in cost and more versatile.

Very compact and highly integrated, the EM202 Ethernet module features built-in Ethernet magnetics, RJ45 connector, and even four status LEDs! While being a true one-component Ethernet solution, the EM202 has a board footprint just slightly bigger than that of a regular RJ45 connector.

For more information, visit the Tibbo pages on our web site (http://www.crownhill.co.uk/tibbo) or Buy here (http://www.crownhill.co.uk/level3.php?cat=24&sec=9)

http://www.crownhill.co.uk/images/em202-middle.jpg http://www.crownhill.co.uk/images/rj1202-small.jpg http://www.crownhill.co.uk/images/em1202-small-2.jpg

enigma
- 4th March 2008, 09:55
Hi Lester

Are there any PBP examples anywhere forusing this device to serially exchange data with a PIC?. I`m looking to send small txt based log files from a PIC to a server.

Cheers Pete

dhouston
- 4th March 2008, 13:28
The simplest method uses a virtual serial port on the PC side so interfacing with it is identical to interfacing with any serial device in the same manner as with USB->serial adapters. Even if you opt for TCP/IP on the PC side, from the PIC side you still interface with it as a serial device using HSerIn/HserOut or SerIn/SerOut.

EDIT: If you use HSerIn/HSerOut, you will need to invert the signals. I use a MAX232 to invert and convert the signals to RS232 levels.

enigma
- 4th March 2008, 22:31
Hi David

Thanks for the reply, I have nil experience in this area so any advice is useful. Is there a way of setting up the Tibbo to signal the PIC that there is incoming data rather than just checking for serial as the device will be busy reading an a/d converter and storing data most of the time.

Cheers Pete

dhouston
- 5th March 2008, 01:58
Thanks for the reply, I have nil experience in this area so any advice is useful. Is there a way of setting up the Tibbo to signal the PIC that there is incoming data rather than just checking for serial as the device will be busy reading an a/d converter and storing data most of the time.
We all started with nil experience. It depends a little on the PIC you will use but you can have the incoming data trigger an interrupt. However, I would probably use the hardware UART (and MAX232) and just check it periodically - there's a UART flag that tells you if a byte has been received.. Read the manual on HSerIn/HSerOut and read the Tibbo documentation (which is a bit over whelming).