java: Changed size_t and unsigned int to int in array declarations. Renamed buf to buffer where necesarry. Moved most Java array typemaps to java_buffer.i. Fixed some String buffers.

Signed-off-by: Petre Eftime <petre.p.eftime@intel.com>
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>

Conflicts:
	src/upm.i
This commit is contained in:
Petre Eftime
2015-09-07 19:00:30 +03:00
committed by Mihai Tudor Panu
parent ab730038fd
commit 2cab79b4c2
50 changed files with 237 additions and 326 deletions

View File

@@ -105,7 +105,7 @@ bool GROVESCAM::dataAvailable(unsigned int millis)
return false;
}
int GROVESCAM::readData(uint8_t *buffer, size_t len)
int GROVESCAM::readData(uint8_t *buffer, int len)
{
if (m_ttyFd == -1)
return(-1);
@@ -118,7 +118,7 @@ int GROVESCAM::readData(uint8_t *buffer, size_t len)
return rv;
}
int GROVESCAM::writeData(uint8_t *buffer, size_t len)
int GROVESCAM::writeData(uint8_t *buffer, int len)
{
if (m_ttyFd == -1)
return(-1);