modserial

Dependencies:   MODSERIAL

Fork of MODSERIAL by Erik -

Committer:
Margreeth95
Date:
Wed Oct 07 18:07:04 2015 +0000
Revision:
41:ea349f8d0ac5
Parent:
33:a65f89de75c5
EMG signaal uitlezen, hoogdoorlaatfilter (redelijk goed), laagdoorlaatfilter (slecht). Lampje aansturen gaat nog fout

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Sissors 27:9c93ce7cb9d8 1 #ifdef TARGET_LPC11U24
Sissors 27:9c93ce7cb9d8 2 #include "MODSERIAL.h"
Sissors 27:9c93ce7cb9d8 3
Sissors 27:9c93ce7cb9d8 4 void MODSERIAL::setBase(void ) {
Sissors 27:9c93ce7cb9d8 5 _base = LPC_USART;
Sissors 27:9c93ce7cb9d8 6 _IRQ = UART_IRQn;
Sissors 27:9c93ce7cb9d8 7 }
Sissors 27:9c93ce7cb9d8 8
Sissors 28:76793a84f9e5 9 void MODSERIAL::initDevice(void) {
Sissors 28:76793a84f9e5 10 ((LPC_USART_Type*)_base)->FCR = (1UL<<0) + (1UL<<1) + (1UL<<2);
Sissors 28:76793a84f9e5 11 }
Sissors 28:76793a84f9e5 12
Sissors 27:9c93ce7cb9d8 13 bool MODSERIAL::txIsBusy( void )
Sissors 27:9c93ce7cb9d8 14 {
Sissors 33:a65f89de75c5 15 return ( (((LPC_USART_Type*)_base)->LSR & ( 1UL << 6 )) == 0 ) ? true : false;
Sissors 27:9c93ce7cb9d8 16 }
Sissors 27:9c93ce7cb9d8 17 #endif