zephyr.js icon indicating copy to clipboard operation
zephyr.js copied to clipboard

JavaScript* Runtime for Zephyr* OS

Results 100 zephyr.js issues
Sort by recently updated
recently updated
newest added
trafficstars

### Description We update ble client number from 1 to 4. There are more clients to be managed. So, can we add ble client manager API on ble module for...

feature
P2

### Description can't read ocf module on Mac ### Test Code [OcfServer.js](https://github.com/01org/zephyr.js/blob/master/samples/OcfServer.js); [OcfPlatformInfo.js](https://github.com/01org/zephyr.js/blob/master/samples/OcfPlatformInfo.js);[OcfNotifyServer.js](https://github.com/01org/zephyr.js/blob/master/samples/OcfNotifyServer.js);[OcfDeviceInfo.js](https://github.com/01org/zephyr.js/blob/master/samples/OcfDeviceInfo.js);[OcfClientUpdate.js](https://github.com/01org/zephyr.js/blob/master/samples/OcfClientUpdate.js);[OcfClient.js](https://github.com/01org/zephyr.js/blob/master/samples/OcfClient.js); ### Steps to Reproduction 1. `make BOARD=linux` 2. `./outdir/linux/release/jslinux samples/OcfServer.js ` ### Actual Result ### Expected Result...

bug
P2
blocked

Review and discuss the Node.js module rules to see what is feasible to add, and what makes sense to add.

enhancement
P2

```[Constructor(optional AccelerometerOptions accelerometerOptions)] interface Accelerometer : Sensor { attribute boolean includesGravity; readonly attribute double x; readonly attribute double y; readonly attribute double z; }; ``` includes gravity is now a...

enhancement
P2

### Description The starting position deviation is too big on function drawChar() and drawString(). The bigger the font, the greater the deviation. ### Test Code Simple test1 for function drawChar():...

bug
P3

### Description This is a regression issue. The output order of Timers.js changes each time on Linux. ### Test Code [Timers.js](https://github.com/01org/zephyr.js/blob/master/samples/Timers.js) ### Steps to Reproduction 1. `make BOARD=linux` 2. `./outdir/linux/release/jslinux...

bug
P3
reconsider later

As @kenchris suggested, the canvas APIs are already familiar to web developers so following them would be most natural for the graphics library in PR #1557. We won't hold up...

feature
P3

When build ashell or ide for frdm_k64f, errors below happened. /home/test/zephyr.js/deps/zephyr/subsys/disk/disk_access_flash.c:21:30: error: ‘CONFIG_DISK_ERASE_BLOCK_SIZE’ undeclared here (not in a function) static uint8_t read_copy_buf[CONFIG_DISK_ERASE_BLOCK_SIZE]; ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/test/zephyr.js/deps/zephyr/subsys/disk/disk_access_flash.c: In function ‘lba_to_address’: /home/test/zephyr.js/deps/zephyr/subsys/disk/disk_access_flash.c:35:15: error: ‘CONFIG_DISK_FLASH_START’...

bug
P3
blocked

### Description Set invalid value for UART.init(): ` uart.init({ port: "value", baud: 115200 });` There is no error thrown out. ### Test Code Simple test: ``` var board = require("uart");...

bug
P3

If you try `console.log(obj)` or `console.log('' + obj)` it prints nothing. But e.g. `console.log('obj: ' + obj)` or `console.log('obj:', obj);` it will work as expected. It would be nice for...

bug
P3