L
lopex
Guest
Salut, je crois que cette question a déjà été parlé. Je veux un vecteur de grande unsigned char [50] [10] = {{0,1,2}, {0,2,6}}; Ce vecteur est constant. Ceci est pour PIC18F4520, Merci C18, Lopex
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
superposition unsigned char big_vector [50] [10] = {{0,1,2}, {0,2,6}};
ROM unsigned char [50] [10] = {{0,1,2}, {0,2,6}};
ROM unsigned char [50] [10] = {{0,1,2}, {0,2,6}};
# pragma Romdata bigvector
ROM vecteur unsigned char [50] [10];