Search found 6 matches

by Acexbe
Wed Nov 21, 2018 8:22 am
Forum: EzSBC1
Topic: Config space and password protection
Replies: 1
Views: 8567

Re: Config space and password protection

Ok,

I guess the smallest block in flash memory you can write is 4k.
So bisedes the config parameters, the rest is free and reachable for both program banks.
by Acexbe
Mon Nov 19, 2018 1:12 pm
Forum: EzSBC1
Topic: Controlling I2C lcd character display
Replies: 0
Views: 11570

Controlling I2C lcd character display

Most character displays have one or two rows of 8, 16, 20, 40 characters. Driving them is parallel 4 or 8 bit plus a number of control lines. A of the shelf I2C interface PCB can be attached, but these are rather slow. The contrast needs to be adjusted by a variable resistor. Some weeks ago, I disco...
by Acexbe
Mon Nov 19, 2018 12:48 pm
Forum: EzSBC1
Topic: I2C scanner
Replies: 1
Views: 6752

Re: I2C scanner version 2

This is an update that shows the 7 bit base slave address with its 8 bit read and write part. I2CINIT(100000) I2CTIME(10) FOR address=0x08 TO 0xFF I2CWR(address,0x00,"",0) IF I2CBUSY(address)=0 THEN base=(address LSR 1) PRINT "slave address: 0x",HEX$(base); bit0=(address & 1)...
by Acexbe
Mon Oct 08, 2018 10:44 am
Forum: EzSBC1
Topic: I2C scanner
Replies: 1
Views: 6752

I2C scanner

Hello, This snipped of code lists all connected devices to the I2C bus. The bus can manage 128 devices. The first seven are reserved, so 120 are available. This code is intended for I2C devices with a 7 bit address. However, newer devices have a 10 bit address. As the ezsbc1 seems to handle 10 bit a...
by Acexbe
Fri Oct 05, 2018 11:44 am
Forum: EzSBC1
Topic: Config space and password protection
Replies: 1
Views: 8567

Config space and password protection

The product page states that code on the ezsbc1 can be password protected. I did not found how to in the manual. The 4k config space can be filled with data that can be used by both code banks. What is the remaining space in the config space (besides the regular entry's like 'Auto and Startuptime). ...
by Acexbe
Tue Sep 04, 2018 10:45 am
Forum: EzSBC1
Topic: Switching code banks
Replies: 2
Views: 7959

Switching code banks

Hello,

Is it possible to switch code banks under program control?
For example bank one samples measurements, but after 24 hours, is switches to bank 2.
Bank 2 processes the results and returns back to bank one.