Skip to content

Instantly share code, notes, and snippets.

@Arie
Last active August 15, 2023 13:10
Show Gist options
  • Save Arie/281477e44bb28021253a6c4de53edfba to your computer and use it in GitHub Desktop.
Save Arie/281477e44bb28021253a6c4de53edfba to your computer and use it in GitHub Desktop.
NanoPi R6S core bitmask
11111110 = fe = cores 1-7
11110000 = f0 = cores 4-7 (2.3Ghz fast)
11000000 = c0 = core 6+7
00110000 = 30 = core 4+5
11100000 = e0 = core 5+6+7
00001111 = f = cores 0-3 (1.8Ghz efficient)
00001110 = e = core 1+2+3
00001100 = c = core 2+3
00000011 = 3 = core 0+1
10000000 = 80 = core 7
01000000 = 40 = core 6
00100000 = 20 = core 5
00010000 = 10 = core 4
00001000 = 8 = core 3
00000100 = 4 = core 2
00000010 = 2 = core 1
00000001 = 1 = core 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment