Skip to content

Commit

Permalink
Merge pull request #98 from ROBOTIS-GIT/develop
Browse files Browse the repository at this point in the history
OpenCR Arduino Package 1.2.0 Release
Fixed #83, #95, #96, #97
  • Loading branch information
ROBOTIS-Will authored May 25, 2018
2 parents 92cdaf7 + 9bb2c68 commit 3a35cd5
Show file tree
Hide file tree
Showing 195 changed files with 5,326 additions and 2,259 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,3 @@ notifications:
branches:
only:
- master
- develop
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
# OpenCR: Open Source Control Module for ROS
# OpenCR: Open Source Control Module for ROS [![Build Status](https://travis-ci.org/ROBOTIS-GIT/OpenCR.svg?branch=master)](https://travis-ci.org/ROBOTIS-GIT/OpenCR/)
![](http://emanual.robotis.com/assets/images/parts/controller/opencr10/opencr_product.png)

|master|develop|
|:---:|:---:|
|[![Build Status](https://travis-ci.org/ROBOTIS-GIT/OpenCR.svg?branch=master)](https://travis-ci.org/ROBOTIS-GIT/OpenCR/)| [![Build Status](https://travis-ci.org/ROBOTIS-GIT/OpenCR.svg?branch=develop)](https://travis-ci.org/ROBOTIS-GIT/OpenCR/branches)|

## ROBOTIS e-Manual for OpenCR
- [ROBOTIS e-Manual for OpenCR](http://emanual.robotis.com/docs/en/parts/controller/opencr10/)

Expand Down
2 changes: 1 addition & 1 deletion arduino/opencr_arduino/opencr/cores/arduino/USBSerial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ int USBSerial::read(void)
}

void USBSerial::flush(void){

while( vcp_is_transmitted() == FALSE );
}

size_t USBSerial::write(const uint8_t *buffer, size_t size)
Expand Down
532 changes: 6 additions & 526 deletions arduino/opencr_arduino/opencr/cores/arduino/digitalWriteFast.h

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions arduino/opencr_arduino/opencr/cores/arduino/yield.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#include <Arduino.h>


void yield(void)
{
//TODO : code implementations
};
2 changes: 1 addition & 1 deletion arduino/opencr_arduino/opencr/libraries/HX8347D/LCD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void TFT::drawFrame(void)
__LCD_WRITE_BYTE(frame_buf[i] & 0xFF);
}
*/
SPI.transferFast(frame_buf, LCD_WIDTH*LCD_HEIGHT*2);
SPI.writeFast(frame_buf, LCD_WIDTH*LCD_HEIGHT*2);

__LCD_CS_SET();

Expand Down
Loading

0 comments on commit 3a35cd5

Please sign in to comment.