many warning cleanups.

Contributed by Clive Stubbings.
This commit is contained in:
Mariano Alvira 2010-03-13 07:30:47 -05:00
parent 7ff7528c85
commit fecb5e7bdb
11 changed files with 27 additions and 27 deletions

View file

@ -8,11 +8,11 @@
void main(void) {
volatile uint32_t i;
*GPIO_PAD_DIR0 = ( 1<< LED );
*GPIO_PAD_DIR0 = LED;
while(1) {
*GPIO_DATA0 = (1 << LED );
*GPIO_DATA0 = LED;
for(i=0; i<DELAY; i++) { continue; }