// Main code for the bootloader
//-----------------------------------------------------------------------------
-#include <proxmark3.h>
+#include "proxmark3.h"
#include "usb_cdc.h"
-#include "cmd.h"
-//#include "usb_hid.h"
void DbpString(char *str) {
- byte_t len = 0;
+ uint8_t len = 0;
while (str[len] != 0x00) {
len++;
}
- cmd_send(CMD_DEBUG_PRINT_STRING,len,0,0,(byte_t*)str,len);
+ cmd_send(CMD_DEBUG_PRINT_STRING,len,0,0,(uint8_t*)str,len);
}
struct common_area common_area __attribute__((section(".commonarea")));
for(;;);
}
-void UsbPacketReceived(uint8_t *packet, int len) {
+void UsbPacketReceived(UsbCommand *c) {
int i, dont_ack=0;
- UsbCommand* c = (UsbCommand *)packet;
volatile uint32_t *p;
- if(len != sizeof(UsbCommand)) {
- Fatal();
- }
-
uint32_t arg0 = (uint32_t)c->arg[0];
switch(c->cmd) {
start_addr = 0;
end_addr = 0;
bootrom_unlocked = 0;
- byte_t rx[sizeof(UsbCommand)];
- size_t rx_len;
+ UsbCommand rx;
- usb_enable();
- for (volatile size_t i=0; i<0x100000; i++);
+ usb_enable();
+ for (volatile size_t i=0; i<0x100000; i++) {};
for(;;) {
WDT_HIT();
- if (usb_poll()) {
- rx_len = usb_read(rx,sizeof(UsbCommand));
- if (rx_len) {
- UsbPacketReceived(rx,rx_len);
- }
- }
+ if (cmd_receive(&rx)) {
+ UsbPacketReceived(&rx);
+ }
if(!externally_entered && !BUTTON_PRESS()) {
/* Perform a reset to leave flash mode */