This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

unspoorted signal function in keil ini file

HI,


I am trying to use signal function in keil.ini file and I even used standard .ini file that use this signal function provided by arm and always getting error saying *** error 76: command not supported  for this signal function
This feature suppose to be suported by keil scripting file but in reality no!

Does any body knows why?

Thanks in advance.

Best regards,

Wassim.

Parents
  • MDK ARM version 5.24.1

    this is the .ini file that I am used as example:

    /*-------------------------------------------*/
    /* Create a Signal Function */
    /*-------------------------------------------*/

    signal void int0_signal (void) {
    while (1) {

    twatch (200000);
    }
    }

    int0_signal();

    //Reset
    //RESET

    // Debug session is ready

    G

    error message in keil log: 

    signal void int0_signal (void) {

     *** error 76: command not supported 

Reply
  • MDK ARM version 5.24.1

    this is the .ini file that I am used as example:

    /*-------------------------------------------*/
    /* Create a Signal Function */
    /*-------------------------------------------*/

    signal void int0_signal (void) {
    while (1) {

    twatch (200000);
    }
    }

    int0_signal();

    //Reset
    //RESET

    // Debug session is ready

    G

    error message in keil log: 

    signal void int0_signal (void) {

     *** error 76: command not supported 

Children