Skip to content

Commit c3c353d

Browse files
committed
Cleanup/removed specific stuff specific to HydraBus (except board).
1 parent 65a97e8 commit c3c353d

File tree

8 files changed

+15
-16
lines changed

8 files changed

+15
-16
lines changed

HydraBus_board.jpg

-155 KB
Binary file not shown.

README.md

+13-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
The Micro Python project (HydraBus port Beta)
2-
==============================================
3-
![HydraBus board](https://github.com/bvernoux/hydrabus/blob/master/HydraBus_board.jpg)
1+
[![Build Status][travis-img]][travis-repo]
2+
[travis-img]: https://travis-ci.org/micropython/micropython.png?branch=master
3+
[travis-repo]: https://travis-ci.org/micropython/micropython
4+
5+
The Micro Python project
6+
========================
7+
<p align="center">
8+
<img src="https://raw2.github.com/micropython/micropython/master/logo/upython-with-micro.jpg" alt="MicroPython Logo"/>
9+
</p>
410

511
This is the Micro Python project, which aims to put an implementation
612
of Python 3.x on a microcontroller.
@@ -19,8 +25,6 @@ Python 3.4 functionality implemented for the data types and modules.
1925
See the repository www.github.com/micropython/pyboard for the Micro
2026
Python board, the officially supported reference electronic circuit board.
2127

22-
For HydraBus version see HydraBus website: http://hydrabus.com
23-
2428
Major components in this repository:
2529
- py/ -- the core Python implementation, including compiler and runtime.
2630
- unix/ -- a version of Micro Python that runs on Unix.
@@ -76,19 +80,16 @@ To build:
7680
$ cd stmhal
7781
$ make
7882

79-
You then need to get your board into DFU mode. On the HydraBus, connect the
80-
3V3 pin to the BOOT0 pin with a wire.
83+
You then need to get your board into DFU mode. On the pyboard, connect the
84+
3V3 pin to the P1/DFU pin with a wire (on PYBv1.0 they are next to each other
85+
on the bottom left of the board, second row from the bottom).
8186

8287
Then to flash the code via USB DFU to your device:
8388

8489
$ make deploy
8590

86-
or for windows:
87-
88-
by double clicking on update_fw_usb_dfu_hydrabus.bat
89-
9091
You will need the dfu-util program, on Arch Linux it's dfu-util-git in the
9192
AUR. If the above does not work it may be because you don't have the
9293
correct permissions. Try then:
9394

94-
$ sudo dfu-util -a 0 -D build-HYDRABUS/firmware.dfu
95+
$ sudo dfu-util -a 0 -D build-PYBV10/firmware.dfu

stmhal/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Select the board to build for: if not given on the command line,
2-
# then default to HYDRABUS.
3-
BOARD ?= HYDRABUS
2+
# then default to PYBV10.
3+
BOARD ?= PYBV10
44
ifeq ($(wildcard boards/$(BOARD)/.),)
55
$(error Invalid BOARD specified)
66
endif

update_fw_dfu_hydrabus/STDFU.dll

-52 KB
Binary file not shown.

update_fw_dfu_hydrabus/STDFUFiles.dll

-256 KB
Binary file not shown.

update_fw_dfu_hydrabus/STDFUPRT.dll

-220 KB
Binary file not shown.
-220 KB
Binary file not shown.

update_fw_usb_dfu_hydrabus.bat

-2
This file was deleted.

0 commit comments

Comments
 (0)