Search found 18 matches

by jpelletier
Sat Feb 13, 2021 3:54 am
Forum: NetBurner Hardware
Topic: Interfacing Sparkfun micro OLED with the MODM7AE70
Replies: 3
Views: 2495

Interfacing Sparkfun micro OLED with the MODM7AE70

I ported the library to interface with the Sparkfun micro OLED (#13003). The OLED displays something but it doesn't quite work. My code is on Github here: https://github.com/jpelletier/oled_spi/tree/master Values at initialisation are good and validated on another platform. The OLED isn't defective,...
by jpelletier
Thu Jan 14, 2021 5:37 am
Forum: NetBurner's Eclipse IDE
Topic: Error message: undefined reference to `EnableOSStackProtector()'
Replies: 2
Views: 2987

Re: Error message: undefined reference to `EnableOSStackProtector()'

Did another try with the project wizard, this time with Stack protection removed. It worked.
by jpelletier
Thu Jan 14, 2021 5:32 am
Forum: NetBurner's Eclipse IDE
Topic: Error message: undefined reference to `EnableOSStackProtector()'
Replies: 2
Views: 2987

Error message: undefined reference to `EnableOSStackProtector()'

What is this error message? It gives that after generating a new project, without any modification. Same attempt before worked.
by jpelletier
Thu Jan 14, 2021 5:25 am
Forum: NetBurner's Eclipse IDE
Topic: Wizard options can brick the netburner?
Replies: 1
Views: 2332

Wizard options can brick the netburner?

The project wizard proposes the application content at 1 point:
-Standard initialization
-Web server
-Stack overflow checking
-Enable WiFi
-Custom discovery server

I'm a newbie and I don't know what are these items and if I need them, why etc. Can missing a crucial option brick the module?
by jpelletier
Sat Dec 26, 2020 4:33 am
Forum: NetBurner Software
Topic: How to derive a class from DSPI
Replies: 2
Views: 1380

Re: How to derive a class from DSPI

Thanks! That will help.
by jpelletier
Fri Dec 25, 2020 1:54 am
Forum: NetBurner Software
Topic: How to use "make load" on the command line
Replies: 4
Views: 1764

Re: How to use "make load" on the command line

It's Netburner version 3.3.0
I use make load on the command line.
Setting the TARGET_IP variable worked on Linux. Thanks!
by jpelletier
Fri Dec 25, 2020 1:13 am
Forum: NetBurner Software
Topic: How to derive a class from DSPI
Replies: 2
Views: 1380

How to derive a class from DSPI

I want to do a display based on the DPSI driver. It is a class that inherits from DSPI. How should I do this exactly? In display.h: In display.cpp: class Display : public DSPIModule { public: Display(); virtual ~Display(); etc. Display::Display() { m_Module = DEFAULT_DSPI_MODULE; /* Initialize pins ...
by jpelletier
Thu Dec 24, 2020 5:43 am
Forum: NetBurner Software
Topic: How to use "make load" on the command line
Replies: 4
Views: 1764

How to use "make load" on the command line

I can use the command "make" on the dos prompt (windows 10), but "make load" needs a target and target host.
How do we specify these? How do I specify my netburner IP?