Skip to content

Commit 1de9187

Browse files
committed
Merge pull request #8 from mbedmicro/master
Synd with master (27 April 2015)
2 parents 0cf5f89 + 7c1fba2 commit 1de9187

File tree

799 files changed

+95656
-69481
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

799 files changed

+95656
-69481
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
---
2-
python:
1+
---
2+
python:
33
- "2.7"
44
script: "python workspace_tools/build_travis.py"
55
install:
66
- "sudo $TRAVIS_BUILD_DIR/travis/install_dependencies.sh > /dev/null"
77
- sudo pip install colorama
8-
- sudo pip install prettytable
8+
- sudo pip install prettytable
9+
- sudo pip install jinja2

CONTRIBUTING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ You can for example read more in our ```docs``` section in [mbedmicro/mbed/doc](
1010
# How to contribute
1111
We really appreciate your contributions! We are Open Source project and we need your help. We want to keep it as easy as possible to contribute changes that get things working in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.
1212

13+
Before a pull request will be merged, the [mbed Contributor Agreement](http://developer.mbed.org/contributor_agreement/) must be signed.
14+
1315
You can pick up existing [mbed GitHub Issue](https://github.com/mbedmicro/mbed/issues) and solve it or implement new feature you find important, attractive or just necessary. We will review your proposal via pull request mechanism, give you comments and merge your changes if we decide your contribution satisfy criteria such as quality.
1416

1517
# Enhancements vs Bugs

libraries/USBDevice/USBAudio/USBAudio.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ float USBAudio::getVolume() {
119119
}
120120

121121

122-
bool USBAudio::EP3_OUT_callback() {
122+
bool USBAudio::EPISO_OUT_callback() {
123123
uint32_t size = 0;
124124
interruptOUT = true;
125125
if (buf_stream_in != NULL) {
@@ -132,7 +132,7 @@ bool USBAudio::EP3_OUT_callback() {
132132
}
133133

134134

135-
bool USBAudio::EP3_IN_callback() {
135+
bool USBAudio::EPISO_IN_callback() {
136136
interruptIN = true;
137137
writeIN = true;
138138
return true;

libraries/USBDevice/USBAudio/USBAudio.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,12 +216,12 @@ class USBAudio: public USBDevice {
216216
/*
217217
* Callback called when a packet is received
218218
*/
219-
virtual bool EP3_OUT_callback();
219+
virtual bool EPISO_OUT_callback();
220220

221221
/*
222222
* Callback called when a packet has been sent
223223
*/
224-
virtual bool EP3_IN_callback();
224+
virtual bool EPISO_IN_callback();
225225

226226
private:
227227

libraries/USBDevice/USBDevice/TARGET_RENESAS/TARGET_RZ_A1H/inc/devdrv_usb_function_api.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ Includes <System Includes> , "Project Includes"
3636
#include <MBRZA1H.h>
3737
#include "r_typedefs.h"
3838
#include "usb0_function_api.h"
39-
#if 0
4039
#include "usb1_function_api.h"
41-
#endif
4240

4341

4442
#ifdef __cplusplus

0 commit comments

Comments
 (0)