Quote Originally Posted by pribilof View Post
Can someone please help? I am stuck on step 6. Can someone clarify what I need to do here.

Thanks

Karl
The hex values inside the config file are saved backwards. That means you have to reverse them to read the values. It's small blocks of 2 digits from 00 to FF(in decimal it would be 0 to 255 which is exactly a byte). If you have two blocks with the order 12 34 you just have to swap them: 12 34 -> 34 12, 1C F0 -> F0 1C, etc.