Adding serial.set(Rx|Tx)BufferSize (#1931)

* Fix for https://github.com/Microsoft/pxt-microbit/issues/1929

* bump pxt

* updated docs

* fix default values

* moving dialogs to react

* moving to react

* typo

* typo
This commit is contained in:
Peli de Halleux
2019-03-21 08:04:48 -07:00
committed by GitHub
parent d640dc5eed
commit ea2361792f
13 changed files with 5416 additions and 1100 deletions

View File

@ -64,6 +64,14 @@ namespace pxsim.serial {
// TODO
}
export function setRxBufferSize(size: number) {
// TODO
}
export function setTxBufferSize(size: number) {
// TODO
}
export function readBuffer(length: number) {
if (length <= 0)
length = 64;