Search found 39 matches

by yo2lio
Thu Oct 18, 2007 7:21 pm
Forum: Wiki Announcements
Topic: Ethernet Module for PIC18F97J60 family
Replies: 5
Views: 8660

My pleasure Steve ! :D
by yo2lio
Wed Oct 17, 2007 6:50 pm
Forum: Wiki Announcements
Topic: Ethernet Module for PIC18F97J60 family
Replies: 5
Views: 8660

Ethernet Module for PIC18F97J60 family

http://www.sfcompiler.co.uk/wiki/pmwiki ... rnetDriver

This program work in Swordfish SE.
Default Ip is 192.168.1.253

Examples have a mini web server page.

This module respond at ICMP, ARP request, UDP, TCP.

Enjoy ! :wink:
by yo2lio
Sat Oct 13, 2007 6:43 pm
Forum: Compiler
Topic: AddressOf const data
Replies: 2
Views: 2101

Thanks David,

My version was 2.0.1.0 !
by yo2lio
Sat Oct 13, 2007 6:26 pm
Forum: User Modules
Topic: Ethernet library for PIC18F97J60
Replies: 11
Views: 8875

I finished now my version of Ethernet library for PIC18F97J60 fam.

Now library is in test and will be available in few days.

Library support ICMP, ARP, UDP, TCP protocols and have Mini WEB server examples.
by yo2lio
Sat Oct 13, 2007 6:22 pm
Forum: Compiler
Topic: AddressOf const data
Replies: 2
Views: 2101

AddressOf const data

Hello, How to get address of const data, const have up to 1500 bytes , it's not possible to declare data as string, byte or char , data must be in this format const data = " data text here up to 1500 bytes " : Public Function httpHeader() As LongWord Const data = "HTTP/1.1 200 OK" + #10 + "Content-t...
by yo2lio
Fri Oct 12, 2007 9:14 am
Forum: Compiler
Topic: Memory BANK 14
Replies: 7
Views: 3998

TimB wrote:Sorry I cannot answer the question but the work round is

public dim EDATAReg As Byte Absolute $0F61

POSTINC2 = EDATAReg
POSTDEC2 = EDATAReg
INDF2 = EDATAReg
Yes, I use this now :

Code: Select all

ASM
  movff EDATA, register_x
END ASM
by yo2lio
Fri Oct 12, 2007 7:40 am
Forum: Compiler
Topic: Memory BANK 14
Replies: 7
Views: 3998

Hi,

- MCU PIC18F97J60, EDATA registers in access bank.

I have a question :

Why this instructions :

Code: Select all

POSTINC2 = EDATA
POSTDEC2 = EDATA
INDF2 = EDATA
Is skipped by compiler and this intructions :

Code: Select all

EDATA = POSTINC2
EDATA = INDF2
etc ...
not !?
by yo2lio
Thu Oct 11, 2007 9:19 pm
Forum: Compiler
Topic: Memory BANK 14
Replies: 7
Views: 3998

David Barker wrote: The SE version has no bank switching - bank switching is not available in the SE version.
I don't know that ! 6 hours of work lost !!!
by yo2lio
Thu Oct 11, 2007 8:03 pm
Forum: Compiler
Topic: Memory BANK 14
Replies: 7
Views: 3998

Memory BANK 14

Hi, I'm a little bit disappointed :? :? :? I finished Ethernet Library with Web Server Examples for PIC18F97J60 family, after 6 hours of work :cry: And surprise ! Compiler don't know to manage ETHERNET REGISTERS . Examples : ECON2 register is placed in BANK 14 at address : $0EFE. Whit this instuctio...
by yo2lio
Thu Oct 11, 2007 11:14 am
Forum: Modules
Topic: CAN module
Replies: 3
Views: 2631

OK, Start !
by yo2lio
Thu Oct 11, 2007 10:25 am
Forum: User Modules
Topic: ENC28J60 Ethernet Controller
Replies: 24
Views: 20287

octal wrote:I hope to finish a full TCP/IP Stack using Swordfish Basic by the end of AUGUST
Do you have some news ?
by yo2lio
Tue Oct 09, 2007 9:04 am
Forum: Modules
Topic: CAN module
Replies: 3
Views: 2631

CAN module

Has anyone done (have) a module (driver) for working with the CAN (Controller Area Network) module.

If answer is NO, I will start to work on them.
by yo2lio
Thu Sep 27, 2007 8:14 pm
Forum: User Modules
Topic: Sensirion Module for SHTxx sensor
Replies: 1
Views: 2995

Sensirion Module for SHTxx sensor

Hi, New module are available, for Sensirion (temperature / humidity) sensor, SHTxx family. Test board : BIGPIC4, MCU PIC18F8520, LCD 2X16, SHT11 sensor connected on PORTC. 4.7 K pull up resistor on Data Pin is necessary . Available functions : Sub Sensirion_Init(ByRef Port.(Data Pin) As Bit, ByRef P...
by yo2lio
Thu Sep 27, 2007 2:52 pm
Forum: User Modules
Topic: TestBit, SetBit, ClearBit, MemCpy, MemCmp
Replies: 5
Views: 4535

Thanks