Legacy microcontrollers Forum Discussions
Hi,
Kindly let me know where can I find ibis model of S6E2CCAL0AGL2000A.
We met with a problem about the connection between the chip and DAS. The chip we use is XC2224L, VQFN package. DAP connector of DAP miniwiggler. The schematic refers to the Easy Kit XC2XXX. The DAS can not recognize the chip. Memtool 4.4 was also tested but failed.
Already connect 'TDO_A' to 470R then GND and '/TRST' to 2.74K to +5V.
While connecting, 'RESET' is high. '/PORST' is high.
Do you have any idea about that?
Thanks. Show Less
I'm looking for a BSDL file that will work for the package PAB416 (416 pin BGA) of the microcontroller CY91F528Y 32-bit FR81S. For the purpose of developing boundary scan tests in the final product.
Regards.
AB
Show LessDears.
Is QSPI supported on S6E1C series?
Thanks and Regards.
Hi,
I want to develop an SW for XE167F-96F device, but as I can c it uses the Keil c166 compiler. Can I also use GCC compiler to build the SW or can I port the SW so that it can be built using GCC compiler?
Thanks,
Vishal
Show LessHi,
I have been trying to get the SPI working on a XC2734 chip to read a eeprom.
Problems i have is with receiving the data, the RBUF always stays 0x00 and never changes.
Check data with a scope and on the MISO input line i see data and it is changing on different address reads.
But RBUF always returns 0x00.
P10.0 Data input MISO
P10.1 Data output MOSI
P10.2 Clock
P10.8 CS
void EEPROM_test()
{
char recValue = '0';
U0C0_PCRL = 0x0F4F;
P10_OMRH = 0x0100; // P10.8 CS Output Low
U0C0_SCTRH = 0x071F; // Sets frame length on 4 byte
vSendData1(0x03);
vSendData1(0x01);
vSendData1(0xD0);
vSendData1(0xFF);
recValue = uwGetData();
//recValue = U0C0_RBUF;
P10_OMRH = 0x0001; // P10.8 CS Output High
}
void vSendData1(uword uwData)
{
U0C0_TBUF00 = uwData; // load transmit buffer register
while(!(U0C0_PSR & 0x1000)); // wait until tx buffer indication flag is set
U0C0_PSCR |= 0x1000; // clear transmit buffer indication flag
}
uword uwGetData(void)
{
while(!((U0C0_PSR & 0x8000) || (U0C0_PSR & 0x4000)));
U0C0_PSCR |= 0xC000; // clear alternate receive indication flag & receive indication flag
return U0C0_RBUF; // return receive buffer register
}
HI
Is it possible to some programming specification for MB91F59BCPB-GSE1?
Thanks
Peter
Hello.
I found the different between clock in datasheet and clock in Platform Part manual.
<datasheet>
<Platform Part Manual>
Why are the max values different?
Thanks and Best regards.
Glenn.
Show LessHi
Where can I download the report?
Thanks,