Author |
Message |
Topic: PIC24FJ1024GB606, six UART support issue CCS v5.091 [Solved] |
jartur32
Replies: 3
Views: 12503
|
Forum: General CCS C Discussion Posted: Sun Sep 06, 2020 6:52 am Subject: PIC24FJ1024GB606, six UART support issue CCS v5.091 [Solved] |
Thanks a lot, now I can make tests with the six UART port, I only made some change in the assignation pins and for now, I donĀ“t see problems, thanks and have a good day |
Topic: PIC24FJ1024GB606, six UART support issue CCS v5.091 [Solved] |
jartur32
Replies: 3
Views: 12503
|
Forum: General CCS C Discussion Posted: Sat Sep 05, 2020 3:09 pm Subject: PIC24FJ1024GB606, six UART support issue CCS v5.091 [Solved] |
Hello all, thanks for any incoming help and have a good day.
I found some issue with the CCS and the PIC24FJ1024GB606, I need to use six UART port at the same time, but the CCS only can handle 4 UA ... |
Topic: I2C problems with PIC18F47K42 |
jartur32
Replies: 8
Views: 24645
|
Forum: General CCS C Discussion Posted: Mon Dec 10, 2018 6:06 pm Subject: Jartur |
Hello BartDelboo, could you check this way, maybe works with the PIC18F47K42 ?
// Active the fast io
#use fast_io(c)
// Define your pin names
#define SCL_PIN PIN_ ... |
Topic: ADC missing channels PIC16F18877 |
jartur32
Replies: 1
Views: 8519
|
Forum: General CCS C Discussion Posted: Mon Oct 01, 2018 6:13 am Subject: ADC missing channels PIC16F18877 |
Hello, the current #include <16F18877.h> have ADC missing channels, only i can see ADC channels in PortA, PortB and PortC and missing the ADC channels in PortD and PortE.
The PIC16F18877 have ... |
Topic: I2C 18f2550 master received string - 16f1503 slave (SOLVED) |
jartur32
Replies: 4
Views: 12146
|
Forum: General CCS C Discussion Posted: Sat Mar 22, 2014 6:58 pm Subject: I2C 18f2550 master received string - 16f1503 slave (SOLVED) |
Thank pcm programmer
Final code
Master
#define SDA_PIN PIN_B0
#define SCL_PIN PIN_B1
#use I2C(MASTER, SDA=SDA_PIN, SCL=SCL_PIN, FORCE_HW, FAST)
#define ADDR 0x10
#d ... |
Topic: I2C 18f2550 master received string - 16f1503 slave (SOLVED) |
jartur32
Replies: 4
Views: 12146
|
Forum: General CCS C Discussion Posted: Fri Mar 21, 2014 3:11 pm Subject: I2C 18f2550 master received string - 16f1503 slave (SOLVED) |
hi pcm programmer
This is a new problem, I can not make the pic slave responds to the pic master with a string, and the pic-master receives the string data to show value on LCD. I've only gotten b ... |
Topic: I2C 18f2550 master received string - 16f1503 slave (SOLVED) |
jartur32
Replies: 4
Views: 12146
|
Forum: General CCS C Discussion Posted: Fri Mar 21, 2014 1:36 pm Subject: I2C 18f2550 master received string - 16f1503 slave (SOLVED) |
Hi all
I'm having a problems when using I2C in one project.
In my project, I receive a data string from i2c master to slave perfect, but I can not send a request to return data from the m ... |
Topic: I2C with 16f1503 slave received string problem (SOLVED) |
jartur32
Replies: 5
Views: 13496
|
Forum: General CCS C Discussion Posted: Mon Feb 24, 2014 9:50 am Subject: I2C with 16f1503 slave received string problem (SOLVED) |
Thank Ttelmah
The problem is solved.
string sent image (logic analyzer)
http://galeon.com/tbz/Untitled.jpg
Final Master send code 18f2550 (Part of code)
// I2C config//
#define SDA_PIN ... |
Topic: I2C with 16f1503 slave received string problem (SOLVED) |
jartur32
Replies: 5
Views: 13496
|
Forum: General CCS C Discussion Posted: Mon Feb 24, 2014 8:22 am Subject: I2C with 16f1503 slave received string problem (SOLVED) |
Hi Thank Ttelmah
Seven (7) is the maximum length of the string being passed and the master code sends all the string correctly, as seen at the image at the output with my logic analyzer.
http:// ... |
Topic: I2C with 16f1503 slave received string problem (SOLVED) |
jartur32
Replies: 5
Views: 13496
|
Forum: General CCS C Discussion Posted: Mon Feb 24, 2014 12:26 am Subject: I2C with 16f1503 slave received string problem (SOLVED) |
Hi all
I'm having a problems when using I2C in one project.
In my project, I receive a data string
void i2c_communication(unsigned int8 opc, byte stream,char string_i2c[9]) ... |
|