Skip to content
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

filterExtendedのmaskがうまく動作していないため修正 #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

MizukiAsano-C
Copy link

fork元にプルリクを発行しようと思いましたが、すでに発行されていてしかもガンスルーされてたのでこちらだけで。

元の状態だとこんな感じ

mask &= ~(mask & 0x1FFFFFFF);
mask & ~(mask & FFFF)  // 思考簡略化のためFFFFに短縮、代入処理を&に展開
mask & (~mask + 0000)  // 反転をカッコ内に代入 ド・モルガンの法則により&から+に
mask & ~mask + mask & 0000  // 掛け算はカッコ内の各々に行うことができる
0000  // A & ~Aは0、x & 0も0

&=から&を取るだけで大丈夫です。
一応maskについては以下のような仕組みらしいっす…
Screenshot from 2023-11-24 09-43-52
https://www.espressif.com/sites/default/files/documentation/esp32_technical_reference_manual_en.pdf
↑これの556ページ

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant