BlinkenArea - GitList
Repositories
Blog
Wiki
mips_sys
Code
Commits
Branches
Tags
Search
Tree:
420617e
Branches
Tags
master
mips_sys
fw
leds.c
added "LEDs" I/O peripheral changed instruction memory from dpram to generated rom improved firmware structure to generate rom VHDL code
Stefan Schuermans
commited
420617e
at 2012-02-10 22:43:28
leds.c
Blame
History
Raw
#include "leds.h" /** * @brief set state of LEDS * @param[in] state LED state */ void leds_set_state(unsigned char state) { volatile unsigned char *p_leds = (volatile unsigned char *)0x80000000; *p_leds = state; }