vs-code server

This commit is contained in:
2025-07-26 14:04:40 -04:00
parent 85c2166eaf
commit 0714b72f46
117 changed files with 50147 additions and 0 deletions

14
node_modules/esptool-js/lib/targets/rom.js generated vendored Normal file
View File

@@ -0,0 +1,14 @@
/**
* Represents a chip ROM with basic registers field and abstract functions.
*/
export class ROM {
/**
* Get the chip erase size.
* @param {number} offset - Offset to start erase.
* @param {number} size - Size to erase.
* @returns {number} The erase size of the chip as number.
*/
getEraseSize(offset, size) {
return size;
}
}