• I'm using the FRDM-KL25Z board to connect servo motor for a project. But I get an error that said error: unknown type name 'Servo'. What is the correct file to #include ("#include "...".h) the file. Im...
    #include "MKL25Z4.h" Servo myservo; static int pos = 0; void setup(){ myservo.attach(2) //PTA1 pin 2 } void loop(){ for (pos = 0; pos <= 180; pos += 1){ myservo.write(pos); } for (pos = 180;...
  • I'm using the FRDM-KL25Z board to connect servo motor for a project. But I get an error that said error: unknown type name 'Servo'. What is the correct file to #include ("#include "...".h) the file. Im...
    #include "MKL25Z4.h" Servo myservo; static int pos = 0; void setup(){ myservo.attach(2) //PTA1 pin 2 } void loop(){ for (pos = 0; pos <= 180; pos += 1){ myservo.write(pos); } for (pos = 180;...
  • How can I simulate a FRDM-KL25Z board in mVision?
    Hello, I'm newbie in Keil and mVision. I would like to know if it is possible to simulate a KL25Z in mVision because I need to run some tests but I forgot my board at office. Thanks.
  • How can I simulate a FRDM-KL25Z board in mVision?
    Hello, I'm newbie in Keil and mVision. I would like to know if it is possible to simulate a KL25Z in mVision because I need to run some tests but I forgot my board at office. Thanks.
  • FRDM-KL25Z can not communicate with TeraTerm
    Hi, I have a program written in ARM assembly language, the task is to display a character on TeraTerm terminal. I have tried to run the program using different version of Keil microvision MDK522...