June 2012

Organizing is Hard!

Ok im starting to thing i should get those old school parts drawers since i seem to be running out of space, the problem is they cost so much. Anyone…

CNC Run

Testing is so fun… especially when it works πŸ˜€ Here is a picture and a short video

STM32F4 USART Functions

Some useful functions to send data… void putchar(USART_TypeDef* myUSART, uint32_t data){ myUSART->DR = (char)data; while(((myUSART->SR >> 6) & 0x01) == 0);}void putstr(USART_TypeDef* myUSART, char *data){ while(*data) putchar(myUSART,*data++);}