Ping pong app demo.

Dependencies:   modem_ref_helper DebouncedInterrupt

modem_callbacks.cpp

Committer:
Jeej
Date:
2020-05-28
Revision:
12:d621c88d5c49
Parent:
10:b69fe2a98432
Child:
13:343ca4102739

File content as of revision 12:d621c88d5c49:

#include "modem_ref_helper.h"


// ============================================================}}}

// Callbacks to MODEM's ALP requests
// ============================================================{{{
void my_read(u8 fid, u32 offset, u32 length, int id)
{
    modem_respond(ALP_ERR_FILE_NOT_FOUND, id);
}

void my_write(u8 fid, void *data, u32 offset, u32 length, int id)
{
    modem_respond(ALP_ERR_FILE_NOT_FOUND, id);
}

void my_read_fprop(u8 fid, int id)
{
    modem_respond(ALP_ERR_FILE_NOT_FOUND, id);
}

void my_flush(u8 fid, int id)
{
    modem_respond(ALP_ERR_FILE_NOT_FOUND, id);
}

void my_delete(u8 fid, int id)
{
    modem_respond(ALP_ERR_FILE_NOT_FOUND, id);
}

void my_lqual(u8 ifid, int per)
{
    PRINT("Interface File [%3d] LQUAL : %d%% PER\r\n", ifid, per);
}

void my_ldown(u8 ifid)
{
    PRINT("Interface File [%3d] LDOWN\r\n", ifid);
}

void my_reset(void)
{
    PRINT("Restarting application...\r\n");
    FLUSH();
    NVIC_SystemReset();
}

void my_boot(u8 cause, u16 number)
{
    PRINT("Modem BOOT[%c] #%d\r\n", cause, number);
    
    // Modem re-booted, restart APP
    my_reset();
}

void my_busy(u8 busy)
{
    if (busy)
    {
        PRINT("Modem Busy\r\n");
        
        /* Stop report, do not use modem */
        /* Wait for modem reboot or modem not busy */
    }
    else
    {
        PRINT("Modem not Busy\r\n");
        
        /* Resume reports */
    }
}