-
-
Notifications
You must be signed in to change notification settings - Fork 2
Update and rename docs/fileBytes.md to docs/developers/fileBytes.md #96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| ## How Many Bytes Does a File Need? | ||
| ## Bytes for a File | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Relocating this file removes Useful? React with 👍 / 👎. |
||
| To determine how much memory a file requires, you need to consider its contents. | ||
| For example, in a text file, the size is determined by the number of characters (including spaces and punctuation). Each character typically requires one or more bytes of storage. | ||
| For other types of files, like images, the calculation is different. For an image on a 160x120 pixel screen, the total memory needed would be the total number of pixels (160 * 120) multiplied by the number of bytes required to store the color of each pixel (which depends on the bits per pixel, or BPP). | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moving this file to the
developers/subdirectory breaks the documentation index. Thedocs-index.htmlfile contains a hardcoded link to the old path (line 21), andscripts/generate-docs-index.jsonly performs a shallow scan of thedocs/directory, which will cause this file to be omitted from future index generations. Please update the indexing logic to handle nested directories and update the hardcoded links.