Author |
Message |
Topic: baud rate out of range |
Shishido
Replies: 8
Views: 16396
|
Forum: General CCS C Discussion Posted: Tue Apr 28, 2015 7:47 am Subject: Sorry for jump in |
Hello, I succeeded compile as below.
#include <24FJ128GA010.h>
#FUSES XT,PR_PLL,NOPROTECT,NOJTAG,NOWDT,NOCKSFSM
#use delay(clock=32M)
#PIN_SELECT U1TX = PIN_B5 // ... |
Topic: SPI pin assign |
Shishido
Replies: 3
Views: 8177
|
Forum: General CCS C Discussion Posted: Sun Apr 26, 2015 7:21 am Subject: Thank you very much |
Thank you very much, I will try it.
BTW, have you experienced Dual SPI or Quad SPI mode used by PIC?
– Dual SPI: CLK, /CS, IO0, IO1
– Quad SPI: CLK, /CS, IO0, IO1, IO2, IO3
You don't... ... |
Topic: SPI pin assign |
Shishido
Replies: 3
Views: 8177
|
Forum: General CCS C Discussion Posted: Fri Apr 24, 2015 3:04 am Subject: SPI pin assign |
Currently, I am using PIC18F27J53 for SPI memory module according with data sheet
http://ww1.microchip.com/downloads/en/DeviceDoc/39964B.pdf
#define EEPROM_SELECT PIN_A2 // CS
#define EEPROM ... |
Topic: Copy data from SPI Flash ROM W25Q64C |
Shishido
Replies: 5
Views: 16119
|
Forum: General CCS C Discussion Posted: Fri Apr 24, 2015 2:17 am Subject: Done COPY SPI memory tool |
Many Thanks , I done SPI memory copy tool .
Pic micom :PIC18F27J53 , clock 20M
When copy 64Mbit memory. the time is 6:30 sec include verify.
Since I hope speed up copy time. I will challenge ... |
Topic: #use capture can be 2 channels? |
Shishido
Replies: 6
Views: 9152
|
Forum: General CCS C Discussion Posted: Sat Apr 11, 2015 7:17 am Subject: Resolves |
hmm...
define=capture_ticks_per_second
compiler doesn't 'like' this. Check the PIC header to see what options for DEFINE are valid.
Jay
///////////////////////////////////
Thank you v ... |
Topic: #use capture can be 2 channels? |
Shishido
Replies: 6
Views: 9152
|
Forum: General CCS C Discussion Posted: Sat Apr 11, 2015 2:43 am Subject: #use capture can be 2 channels? |
without having any background using your chip:
#use capture(CCP1, FASTEST, CAPTURE_RISING, timer=1, define=capture_ticks_per_second, fastest, stream=CCP1_STREAM)
#use capture(CCP2, ... |
Topic: #use capture can be 2 channels? |
Shishido
Replies: 6
Views: 9152
|
Forum: General CCS C Discussion Posted: Fri Apr 10, 2015 10:31 pm Subject: Thanks |
>As with just about any #use, there is a "stream" option. >Make two different #use capture() directives and assign them different >streams. Then supply the stream arguments for ca ... |
Topic: #use capture can be 2 channels? |
Shishido
Replies: 6
Views: 9152
|
Forum: General CCS C Discussion Posted: Fri Apr 10, 2015 5:10 pm Subject: #use capture can be 2 channels? |
I want to measure capture time by 2 channels such as CCP1 and CCP2.
However, it seems to
#include <16f1938.h>
#DEVICE ADC=10
#fuses INTRC_IO,NOWDT,NOPROTECT,PUT,NOCPD,NOLVP,BROWNOUT, ... |
Topic: Copy data from SPI Flash ROM W25Q64C |
Shishido
Replies: 5
Views: 16119
|
Forum: General CCS C Discussion Posted: Thu Feb 26, 2015 3:15 am Subject: Thanks Jay san |
Dear Jay san, thank you for your good comments.
Actually, I have experienced developed I2C protocol device such as EEPROM ,I2C LCD ,etc controlled by PIC16,PIC18.
According datasheet of Winbond W ... |
Topic: Copy data from SPI Flash ROM W25Q64C |
Shishido
Replies: 5
Views: 16119
|
Forum: General CCS C Discussion Posted: Wed Feb 25, 2015 7:51 pm Subject: Copy data from SPI Flash ROM W25Q64C |
Dear All, I would like to copy to new blank Flash W25Q64CROM data of BIOS flash ROM (Winbond W25Q64C )
which protocol is SPI by PIC18 or PIC 24.
we can get datasheet
http://www.alldatasheet. ... |
|