C51-Extension-for-VScode icon indicating copy to clipboard operation
C51-Extension-for-VScode copied to clipboard

适用于VScode 的 C51 系列单片机编译插件

Results 7 C51-Extension-for-VScode issues
Sort by recently updated
recently updated
newest added

Bumps [fstream](https://github.com/npm/fstream) from 1.0.11 to 1.0.12. Commits - [`4235459`](https://github.com/npm/fstream/commit/42354590e23bb514eb5c869eea64406be2947c6c) 1.0.12 - [`6a77d2f`](https://github.com/npm/fstream/commit/6a77d2fa6e1462693cf8e46f930da96ec1b0bb22) Clobber a Link if it's in the way of a File - See full diff in [compare view](https://github.com/npm/fstream/compare/v1.0.11...v1.0.12)...

dependencies

Bumps [tar](https://github.com/npm/node-tar) from 2.2.1 to 2.2.2. Commits - [`523c5c7`](https://github.com/npm/node-tar/commit/523c5c7fef48b10811fccd12b42803c61b6aead8) 2.2.2 - [`7ecef07`](https://github.com/npm/node-tar/commit/7ecef07da6a9e72cc0c4d0c9c6a8e85b6b52395d) Bump fstream to fix hardlink overwriting vulnerability - [`9fc84b9`](https://github.com/npm/node-tar/commit/9fc84b9c596c3589d4c1ab050843de0eafb002e8) Use {} for hardlink tracking instead of [] -...

dependencies

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.20. Commits ded9bc6 Bump to v4.17.20. 63150ef Documentation fixes. 00f0f62 test.js: Remove trailing comma. 846e434 Temporarily use a custom fork of lodash-cli. 5d046f3 Re-enable Travis...

dependencies

Bumps [js-yaml](https://github.com/nodeca/js-yaml) from 3.12.0 to 3.14.1. Changelog Sourced from js-yaml's changelog. [3.14.1] - 2020-12-07 Security Fix possible code execution in (already unsafe) .load() (in &anchor). [3.14.0] - 2020-05-22 Changed Support...

dependencies

能否考虑支持sdcc或其他一些编译器,

添加了几个设置选项:分别是设置存储模式(变量存储位置),代码ROM大小,输出hex名称,自定义编译选项(方便自己添加编译命令,无需修改插件源码)等等 package.json文件中添加以下项: ``` "C51.ModelMemory":{ "type": "string", "enum": [ "SMALL", "COMPACT", "LARGE" ], "default": "SMALL", "description": "SMALL: variables in DATA\nCOMPACT: variables in PDATA\nLARGE: variables in XDATA" }, "C51.ModelRom": { "type": "string",...