Re: kann die PORTS nicht schalten Kategorie: CC-Pro Unit & Appl.Board (von Frank - 2.01.2009 22:47) | ||
Als Antwort auf kann die PORTS nicht schalten von vitty - 4.12.2008 20:45 | ||
| ||
> Hallo, > ich habe in meinem program ports 20-23 also PC4-Pc7 > auf ausgang initialisiert und steuere mit diesen in meinem > Programm ein schieberegister. > aber ich kann auch alle ports on schalten habe aber an den > pins keine Spannung. > > worwn könnte das liegen????? > > Die led´s funktionieren ohne probs. > aber meine pins net. > > mfg Hallo Ich habe ein �hnliches Problem mit den Port C Das BeispielProgramm ( deiLEDs funktionieren) und der Ausgang Bit 22 geht ebenfalls. Die PINS 18-21 reagieren nicht Was mache ich falsch void main(void) { Port_DataDirBit(PORT_LED1,PORT_OUT); Port_DataDirBit(PORT_LED2,PORT_OUT); Port_DataDirBit(22,PORT_OUT); Port_DataDirBit(21,PORT_OUT); Port_DataDirBit(20,PORT_OUT); Port_DataDirBit(19,PORT_OUT); Port_DataDirBit(18,PORT_OUT); while(true) // Endlosschleife { Port_WriteBit(PORT_LED1,PORT_ON); Port_WriteBit(PORT_LED2,PORT_OFF); Port_WriteBit(22,PORT_OFF); Port_WriteBit(21,PORT_OFF); Port_WriteBit(20,PORT_OFF); Port_WriteBit(19,PORT_OFF); Port_WriteBit(18,PORT_OFF); AbsDelay(1000); Port_WriteBit(PORT_LED1,PORT_OFF); Port_WriteBit(PORT_LED2,PORT_ON); Port_WriteBit(22,PORT_ON); Port_WriteBit(21,PORT_ON); AbsDelay(1000); } } Frank | ||
Antwort schreiben Antworten: |
Zur Übersicht - INFO - Neueste 50 Beiträge - Neuer Beitrag - Suchen - Zum C-Control-I-Forum - Zum C-Control-II-Forum