Click here to Skip to main content
15,888,579 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: plz solution this programe???????????? Pin
Richard MacCutchan16-Nov-14 3:43
mveRichard MacCutchan16-Nov-14 3:43 
GeneralRe: plz solution this programe???????????? Pin
David Crow17-Nov-14 5:58
David Crow17-Nov-14 5:58 
GeneralRe: plz solution this programe???????????? Pin
Richard MacCutchan17-Nov-14 6:11
mveRichard MacCutchan17-Nov-14 6:11 
AnswerRe: plz solution this programe???????????? Pin
Chris Losinger17-Nov-14 4:55
professionalChris Losinger17-Nov-14 4:55 
QuestionMenu change in IDE but not in running application Pin
Gagnon Claude14-Nov-14 10:50
Gagnon Claude14-Nov-14 10:50 
AnswerRe: Menu change in IDE but not in running application Pin
Richard Andrew x6414-Nov-14 12:51
professionalRichard Andrew x6414-Nov-14 12:51 
QuestionRe: Menu change in IDE but not in running application Pin
Richard MacCutchan14-Nov-14 21:29
mveRichard MacCutchan14-Nov-14 21:29 
QuestionHow to change the name of a tabbed pane Pin
Gagnon Claude12-Nov-14 9:10
Gagnon Claude12-Nov-14 9:10 
AnswerRe: How to change the name of a tabbed pane Pin
Richard MacCutchan12-Nov-14 21:18
mveRichard MacCutchan12-Nov-14 21:18 
Questionc++ help Pin
Member 1122785412-Nov-14 3:44
Member 1122785412-Nov-14 3:44 
AnswerRe: c++ help Pin
Richard MacCutchan12-Nov-14 4:21
mveRichard MacCutchan12-Nov-14 4:21 
GeneralRe: c++ help Pin
Member 1122785414-Nov-14 4:09
Member 1122785414-Nov-14 4:09 
GeneralRe: c++ help Pin
Richard MacCutchan14-Nov-14 6:10
mveRichard MacCutchan14-Nov-14 6:10 
AnswerRe: c++ help Pin
CPallini13-Nov-14 21:35
mveCPallini13-Nov-14 21:35 
GeneralRe: c++ help Pin
Member 1122785414-Nov-14 4:12
Member 1122785414-Nov-14 4:12 
GeneralRe: c++ help Pin
Albert Holguin14-Nov-14 4:14
professionalAlbert Holguin14-Nov-14 4:14 
GeneralRe: c++ help Pin
Member 1122785414-Nov-14 4:29
Member 1122785414-Nov-14 4:29 
GeneralRe: c++ help Pin
Maximilien14-Nov-14 4:58
Maximilien14-Nov-14 4:58 
SuggestionRe: c++ help Pin
David Crow14-Nov-14 16:24
David Crow14-Nov-14 16:24 
GeneralTwo dimmensional array using pointers on Arduino Due Pin
Vaclav_10-Nov-14 9:43
Vaclav_10-Nov-14 9:43 
GeneralRe: Two dimmensional array using pointers on Arduino Due Pin
Albert Holguin10-Nov-14 16:58
professionalAlbert Holguin10-Nov-14 16:58 
GeneralRe: Two dimmensional array using pointers on Arduino Due Pin
Vaclav_11-Nov-14 3:39
Vaclav_11-Nov-14 3:39 
It basically stops here
lcd_i2c.print(**Display); // display is OK

So it may be the LCD problem.

If it crashed it should restart, but there is something different is Due (SAM) code from AVR code on start up, so it my be just stuck.

I think I am assigning the values to the wrong pointer after the first array is done.
I actually should use plain array and not pointers since I need to do convolution with 3x3 matrix to detect edge.

I am not sure this is correct - the function gets a double pointer and than I assign to double pointer. But if I assign Display = iCount the compiler does not like it and I am still learning how to "translate" compiler / Arduino error messages.




<pre lang="c++">

lcd_i2c.setCursor(0, 2);
lcd_i2c.print("Display ");
**Display = iCount++; // set test value - works
lcd_i2c.print(**Display); // display is OK
// lcd_i2c.setCursor(0, 3);
// lcd_i2c.print("mask center ");
// lcd_i2c.print(**image );
**Display++;
delay(500);

</pre>
SuggestionMessage Closed Pin
15-Nov-14 7:37
4india15-Nov-14 7:37 
GeneralRe: Two dimmensional array using pointers on Arduino Due Pin
Albert Holguin15-Nov-14 7:57
professionalAlbert Holguin15-Nov-14 7:57 
QuestionRe: Two dimmensional array using pointers on Arduino Due Pin
David Crow11-Nov-14 4:12
David Crow11-Nov-14 4:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.