📄 cbootloader.h
字号:
/* cbootloader.cpp - part of flashtool for AVRUSBBoot, an USB bootloader for Atmel AVR controllers Thomas Fischl <tfischl@gmx.de> Creation Date..: 2006-03-18 Last change....: 2006-06-25*/#include <stdio.h>#include <stdlib.h>#include <assert.h>#include <string.h>#include "usb.h"#include "cpage.h"#define USBDEV_SHARED_VENDOR 0x16C0 /* VOTI */#define USBDEV_SHARED_PRODUCT 0x05DC /* Obdev's free shared PID */class CBootloader { public: CBootloader(); ~CBootloader(); unsigned int getPagesize(); void writePage(CPage* page); void startApplication(); protected: usb_dev_handle *usbhandle;};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -