1. uint16_t uart_getBaudrate(void) {
  2. DDRA &= 0x3f; // Setze die Pins als Eingang
  3. PORTA |= 0xc0; // Schalte beide Pullups ein
  4. return ((PINA&0xc0)>>6) == 2 ? 19200 : ((PINA&0xc0)>>6) == 1 ? 38400 : 9600; // Frage den Logikpegel der Pins ab und gib die so eingestellte Baudrate zurueck
  5. }