├── .gitignore ├── 7seg_count └── 7seg_count.py ├── README.md ├── blink └── blink.py ├── pwm_fade └── pwm_fade.py ├── rgb_fade └── rgb_fade.py ├── rgb_fade_gamma └── rgb_fade.py ├── tristate_blink └── tristate_blink.py ├── tristate_fade └── tristate_fade.py └── uart └── uart.py /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | *.vcd 3 | -------------------------------------------------------------------------------- /7seg_count/7seg_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebreaker-fpga/icebreaker-migen-examples/HEAD/7seg_count/7seg_count.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebreaker-fpga/icebreaker-migen-examples/HEAD/README.md -------------------------------------------------------------------------------- /blink/blink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebreaker-fpga/icebreaker-migen-examples/HEAD/blink/blink.py -------------------------------------------------------------------------------- /pwm_fade/pwm_fade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebreaker-fpga/icebreaker-migen-examples/HEAD/pwm_fade/pwm_fade.py -------------------------------------------------------------------------------- /rgb_fade/rgb_fade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebreaker-fpga/icebreaker-migen-examples/HEAD/rgb_fade/rgb_fade.py -------------------------------------------------------------------------------- /rgb_fade_gamma/rgb_fade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebreaker-fpga/icebreaker-migen-examples/HEAD/rgb_fade_gamma/rgb_fade.py -------------------------------------------------------------------------------- /tristate_blink/tristate_blink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebreaker-fpga/icebreaker-migen-examples/HEAD/tristate_blink/tristate_blink.py -------------------------------------------------------------------------------- /tristate_fade/tristate_fade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebreaker-fpga/icebreaker-migen-examples/HEAD/tristate_fade/tristate_fade.py -------------------------------------------------------------------------------- /uart/uart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icebreaker-fpga/icebreaker-migen-examples/HEAD/uart/uart.py --------------------------------------------------------------------------------