Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
Hola, soy nuevo en mbed y tengo un problema con el método attach. Mi programa se ejecuta correctamente y cuando recibe un carácter por el puerto serie se detiene sin ejecutar ninguna acción, simlemente se para. El programa es el siguiente:
Serial pc(USBTX, USBRX);
void callback() { pc.printf("%c\n", pc.getc()); }
int main() { pc.attach(&callback, pc.RxIrq);
while (1) { pc.printf("OK"); wait(0.5); } }
Gracias por la ayuda, un saludo.