
- Netduino Forums
- → Fabien Royer's Content
Fabien Royer's Content
There have been 203 items by Fabien Royer (Search limited from 06-July 24)
#29293 Information on Nwazet Display Go! module
Posted by
Fabien Royer
on 16 May 2012 - 09:04 PM
in
Netduino Go

#27030 Information on Nwazet Display Go! module
Posted by
Fabien Royer
on 12 April 2012 - 06:26 AM
in
Netduino Go
Are pictures other than bitmaps supported?
Yes: raw 16-bit / pixel bitmaps.
3. Is it possible to display serial video, say mJpeg or H.264 at a relatively low frame rate?
If you can convert mpeg frames or H.264 frame to raw 16-bit bit streams, you can, even though the frame rate will be limited by the bandwidth provided by SPI as well as the size of the (8KB) buffer currently used. Nothing prevents you from tuning the firmware for your application (Ah! The beauty of OSS

Cheers,
-Fabien.
#27830 Information on Nwazet Display Go! module
Posted by
Fabien Royer
on 21 April 2012 - 05:38 PM
in
Netduino Go
There isn't one in this revision of the module and here's why: the ILI9341 IC driver of the display I'm using does have a PWM backlight control circuit that is configurable through software commands (Write Display Brightness (51h) page 141 of the datasheet). The manufacturer of the display omitted to connect it to the backlight

-Fabien.
#27202 Information on Nwazet Display Go! module
Posted by
Fabien Royer
on 14 April 2012 - 12:55 AM
in
Netduino Go
#27336 Information on Nwazet Display Go! module
Posted by
Fabien Royer
on 16 April 2012 - 03:25 AM
in
Netduino Go
#27322 Information on Nwazet Display Go! module
Posted by
Fabien Royer
on 16 April 2012 - 12:36 AM
in
Netduino Go
Is there a way to Initialize the display without specifing the socket to be used?
Nope: to initialize a module you must have a socket associated with it.
I want to be able to plug in the display module and let the Netduino Go main board find the display module.
That's a different thing: you could send an SPI query identical to the one used in canvas.Initialize() to retrieve the module's ID and take it from there if it corresponds to the display.
What is the scenario for doing this?
#28830 Information on Nwazet Display Go! module
Posted by
Fabien Royer
on 11 May 2012 - 03:34 PM
in
Netduino Go
You're re-inventing what the Widget event handler is already doing

I hope this helps.
Cheers,
-Fabien.
#29341 Information on Nwazet Display Go! module
Posted by
Fabien Royer
on 17 May 2012 - 04:36 PM
in
Netduino Go
Please see this thread: http://forums.netdui...-announcements/
Cheers.
-Fabien.
#29488 Information on Nwazet Display Go! module
Posted by
Fabien Royer
on 21 May 2012 - 04:33 PM
in
Netduino Go
#29485 Information on Nwazet Display Go! module
Posted by
Fabien Royer
on 21 May 2012 - 03:47 PM
in
Netduino Go
#27026 Information on Nwazet Display Go! module
Posted by
Fabien Royer
on 12 April 2012 - 06:19 AM
in
Netduino Go

#46224 How to upgrade to the .NET Micro Framework v4.3 SDK
Posted by
Fabien Royer
on 25 February 2013 - 06:26 PM
in
Beta Firmware and Drivers
Chris,
"[color=rgb(40,40,40);font-family:helvetica, arial, sans-serif;font-size:14px;]I'm guessing that 10.5 mbps was too fast for the module. That's a lot of data for a 48MHz microcontroller to handle that's also updating a display...so 5.25 mbps seems totally reasonable"[/color]
[color=rgb(40,40,40);font-family:helvetica, arial, sans-serif;font-size:14px;]You guessed wrong.[/color]
- [color=rgb(40,40,40);font-family:helvetica, arial, sans-serif;font-size:14px;]The Touch Display module runs on a [/color]STM32F205RET6 [color=rgb(40,40,40);font-family:helvetica, arial, sans-serif;font-size:14px;]at 120 Mhz.[/color]
- [color=rgb(40,40,40);font-family:helvetica, arial, sans-serif;font-size:14px;]The DAQ module runs on a [/color]STM32F051R8T6 at 48 MHz.
In both cases, the processing work that they perform is independent of the SPI communication throughput because it's buffered and asynchronous. A simple examination of our SPI over DMA source code would have avoid a misleading statement.
For the record, throughput has never been an issue with our modules until GoBus introduced SPI handling changes.
#35644 Getting started with Nwazet Display
Posted by
Fabien Royer
on 20 September 2012 - 08:44 PM
in
Netduino Go
Sorry that you're having difficulties putting together your project from the binary assemblies.
I'll look into why that is and will make corrections as needed. I've also been thinking about creating tutorials and code snippets, similar to the ones I created for the DAQ module.
In the meantime, you can do the following:
- Go to the Nwazet source repository and do "Get Source" as a zip file
- Expand the zip file to a location of your choice
- Create a Netduino Go! project in VS2010 (any version)
- Paste the code generated by Nutshell into program.cs
- Right-click on the solution and do "Add Existing Project..."
- Add "Nwazet.Go.Core.csproj"
- Add "Nwazet.Go.Display.csproj"
- Make "Nwazet.Go.Core" and "Nwazet.Go.Display" dependencies of your main project
- Compile and deploy
I hope this helps.
Cheers,
-Fabien.
#35649 Getting started with Nwazet Display
Posted by
Fabien Royer
on 20 September 2012 - 08:54 PM
in
Netduino Go
#35650 Getting started with Nwazet Display
Posted by
Fabien Royer
on 20 September 2012 - 08:58 PM
in
Netduino Go
#35661 Getting started with Nwazet Display
Posted by
Fabien Royer
on 20 September 2012 - 09:30 PM
in
Netduino Go

#35647 Getting started with Nwazet Display
Posted by
Fabien Royer
on 20 September 2012 - 08:51 PM
in
Netduino Go

#31863 Getting serial data into ND Go
Posted by
Fabien Royer
on 11 July 2012 - 03:45 PM
in
Netduino Go
but what is Fabien doing here, he is using serial com?
http://forums.netdui...sue-with-42-rc5
Yup. I'm using a serial port on the Netduino Go! itself, not on the Shield Base.
-Fabien.
#46715 GetSocketsByUniqueId - not working?
Posted by
Fabien Royer
on 05 March 2013 - 10:25 PM
in
Netduino Go
[font="arial, sans-serif;font-size:12.800000190734863px;"]Hi Asbjorn,[/font]
- DAQ w/ SD card
- Touch Display
- SL Potentiometer
- Komodex 7-segment display
- 3x I2C sensors
- 1x XBee radio
#36991 Flashing Go Modules using ST Microelectronics’ Flash Loader Demonstrator
Posted by
Fabien Royer
on 10 October 2012 - 10:32 PM
in
Netduino Go
http://www.youtube.com/watch?v=jB3nFQso2Vs
Cheers,
-Fabien.
Links & References
Nwazet Source repository
Nwazet firmware files
Map file for the STM32F051x
Adafruit FTDI Friend + extras - v1.0
Adafruit USB FTDI cable - TTL-232R 3.3V
Sparkfun FTDI Basic Breakout - 3.3V
Sparkfun FTDI Cable 5V VCC-3.3V I/O
ST Flash Loader Demonstrator
Netduino Go! IDC Cable Breakout
Netduino GO! Hacking - Breaking out sockets
#37042 Flashing Go Modules using ST Microelectronics’ Flash Loader Demonstrator
Posted by
Fabien Royer
on 11 October 2012 - 05:07 PM
in
Netduino Go
#37049 Flashing Go Modules using ST Microelectronics’ Flash Loader Demonstrator
Posted by
Fabien Royer
on 11 October 2012 - 06:29 PM
in
Netduino Go
#32823 Ethernet Module Update
Posted by
Fabien Royer
on 27 July 2012 - 10:15 PM
in
Netduino Go
2.5.0 is listed as the supported flashing tool on the STM32F051
While the tool is capable of flashing an STM32F0x chip, it is missing several STM32F0 device map files.
I created a map file for the STM32F051 Medium Density with 64K of flash (see the attachment) and tested it against an STM32F051 Discovery board.
-Fabien.
Attached Files
-
STM32F0_Med-density_64K.zip 1.44KB 5 downloads
#31825 Ethernet Module Update
Posted by
Fabien Royer
on 10 July 2012 - 04:52 PM
in
Netduino Go

#32814 Ethernet Module Update
Posted by
Fabien Royer
on 27 July 2012 - 08:01 PM
in
Netduino Go
About this:
3. Reflashing using the USART pins (and ST's Flash Demo Loader application...or the reflash tool provided on Netduino).
1. Are you sure about the ST Flash Loader application? Version 2.5.0 does not support flashing the STM32F0x series. Can you please share a link to the updated tool?
2. About the 'reflash tool provided on Netduino': can you please provide a link to the RTM version of the tool? The last version I tested did not work properly with the Display Module.
Thanks,
-Fabien.
- Netduino Forums
- → Fabien Royer's Content
- Privacy Policy