スイッチ一つでCtrl+Alt+Delをやってみた

C:\Microchip Solutions v2012-08-22\USB\Device - HID - Keyboard\Keyboard.c の中身をこんな風に変更

void Keyboard(void)
{
	static unsigned char key = 0x4c;//DEL	

	//Check if the IN endpoint is not busy, and if it isn't check if we want to send 
	//keystroke data to the host.
    if(!HIDTxHandleBusy(lastINTransmission))
    {
        if(Switch3IsPressed())
        {
        	//Load the HID buffer
        	hid_report_in[0] = 0b00000101;//左ALT+左Ctrl
        	hid_report_in[1] = 0;
        	hid_report_in[2] = key;
        	hid_report_in[3] = 0;
        	hid_report_in[4] = 0;
        	hid_report_in[5] = 0;
        	hid_report_in[6] = 0;
        	hid_report_in[7] = 0;
           	//Send the 8 byte packet over USB to the host.
           	lastINTransmission = HIDTxPacket(HID_EP, (BYTE*)hid_report_in, 0x08);
    
//            if(key == 40)
//            {
//                key = 4;
//            }
        }
        else