cmsis-dap debug adapter

Dependencies:   BaseDAP F042K6_USBDevice SWD USBDAP mbed

Fork of Simple-CMSIS-DAP by Norimasa Okamoto

CMSIS-DAP debug adapter. (not mbed-interface)

/media/uploads/va009039/f042k6_simple-cmsis-dap.jpg

SWDNUCLEO-F042K6
SWDIOD7
SWCLKD6
nRESETD3

main.cpp

Committer:
va009039
Date:
2014-06-23
Revision:
0:dbe821206b04
Child:
1:2957e24bb52f

File content as of revision 0:dbe821206b04:

#include "mbed.h"
#include "USBDAP.h"
#include "BaseDAP.h"

SWD swd(D12, D10, D6); // SWDIO,SWCLK,nRESET
DigitalOut connected(LED_GREEN);
DigitalOut running(LED_RED);

class myDAP : public BaseDAP {
public:
    myDAP(SWD* swd):BaseDAP(swd){};
    virtual void infoLED(int select, int value) {
        switch(select) {
            case 0:
                connected = value^1; 
                running = 1;
                break;
            case 1: 
                running = value^1; 
                connected = 1;
                break;
        }
    } 
};

int main() {
   USBDAP* hid = new USBDAP;
   myDAP* dap = new myDAP(&swd);
   while(1) {
        HID_REPORT recv_report;
        if(hid->readNB(&recv_report)) {
            HID_REPORT send_report;
            dap->Command(recv_report.data, send_report.data);
            send_report.length = 64;
            hid->send(&send_report);
        }
    }    
}