Author |
Message |
Topic: Dynamic Matrix |
Brandon03
Replies: 2
Views: 3759
|
Forum: General CCS C Discussion Posted: Thu Jan 12, 2012 12:14 am Subject: Dynamic Matrix |
There are two common approaches. For N rows with M columns each:
One is to simulate the matrix with a one-dimensional array. You
allocate space for N*M objects, as with
T *ptr = malloc(N * M * s ... |
Topic: I2C and pullups |
Brandon03
Replies: 4
Views: 5755
|
Forum: General CCS C Discussion Posted: Thu Jan 12, 2012 12:13 am Subject: I2C and pullups |
As you have seen already by yourself, pullup resistors are vital for the i2c bus, both in the sda and scl lines. It is usually obvious that the sda line is bidirectional, what is not so obvious is tha ... |
Topic: multiple Adc simultaneously |
Brandon03
Replies: 14
Views: 19283
|
Forum: General CCS C Discussion Posted: Thu Jan 12, 2012 12:12 am Subject: multiple Adc simultaneously |
there is a way to do true simultaneous sampling. It onvolves using many discrete Sample and Hold circuits. You just connect S/h input to your signals, outputs to analog pins of PIC and tie all of writ ... |
|