Search found 89 matches

by inmarket
Mon Nov 25, 2013 1:24 pm
Forum: User Projects
Topic: LCD-TFT Driver Controller (LTDC)
Replies: 22
Views: 15668

Re: LCD-TFT Driver Controller (LTDC)

And both projects now take considerable investment in time (and therefore money) to grow.
by inmarket
Sun Nov 24, 2013 4:19 pm
Forum: User Projects
Topic: LCD-TFT Driver Controller (LTDC)
Replies: 22
Views: 15668

Re: LCD-TFT Driver Controller (LTDC)

Yes, pure GPL is a problem for just about every other license. Unfortunate.
by inmarket
Sun Nov 17, 2013 8:59 am
Forum: STM32 Support
Topic: Issue with threading setup
Replies: 4
Views: 4306

Re: Issue with threading setup

I am not sure if this will create problems but if you are still having problems this may be worth a try... gfxInit() should be performed in your main thread before anything else happens. It internally also calls the ChbiOS init functions halInit() and chSysInit(). Calling it from a separate thread a...
by inmarket
Sun Nov 17, 2013 7:27 am
Forum: General Support
Topic: lcd3310
Replies: 3
Views: 2905

Re: lcd3310

I suspect you are using the uGFX driver as I don't think ChibiOS has any lcd drivers.
If that is the case, can you please repost this in the uGFX forum at http://www.ugfx.org/forum
by inmarket
Sun Nov 17, 2013 7:22 am
Forum: General Support
Topic: Makefile problems
Replies: 1
Views: 1871

Makefile problems

I recently upgraded my Cygwin toolset and the arm compiler toolchain I am using (to 4.7.4). As I also compile for the windows platform and the same problem occurs I suspect the make in the Cygwin toolset. Since that upgrade I have had continued problems with building. The first build attempt works f...
by inmarket
Wed Nov 06, 2013 9:50 pm
Forum: General Support
Topic: Makefile issues
Replies: 17
Views: 10138

Re: Makefile issues

Ahhh. I had a look at why it had no problems with the ../ Because I am creating the object files in the .build/.obj directory, a single level of ../ moves the ChibiOS directory into the .build directory. Everything is still contained nicely out of site and there are still no naming conflicts so that...
by inmarket
Wed Nov 06, 2013 9:43 pm
Forum: General Support
Topic: Makefile issues
Replies: 17
Views: 10138

Re: Makefile issues

Yes it recreates a sub-tree.

For some reason it doesn't seem to have issues with ../ in the path.
From my project directory I reference the ChibiOS path as ../chibios
by inmarket
Wed Nov 06, 2013 8:41 am
Forum: General Support
Topic: Makefile issues
Replies: 17
Views: 10138

Re: Makefile issues

From my Win32 Makefile adjusted to solve this naming file conflict problem.... # Output directory and files ifeq ($(BUILDDIR),) BUILDDIR = .build endif ifeq ($(BUILDDIR),.) BUILDDIR = .build endif OBJDIR = $(BUILDDIR)/obj LSTDIR = $(BUILDDIR)/lst MAPDIR = $(BUILDDIR)/map INCDIR = $(patsubst %,-I%,$(...
by inmarket
Sat Oct 26, 2013 8:03 am
Forum: AT91SAM7x Support
Topic: UART and DMA
Replies: 10
Views: 13974

Re: UART and DMA

This concept of a string of buffers/operations to be performed is actually something that would abstract very well to higher level code and would be a very useful ChibiOS feature. I struck this when dealing with the ADC. Already ChibiOS splits the buffer in two and allows a half-completion. Unfortun...
by inmarket
Sat Oct 26, 2013 7:44 am
Forum: AT91SAM7x Support
Topic: [TODO] AT91SAM7 CAN Driver
Replies: 10
Views: 12142

Re: [TODO] AT91SAM7 CAN Driver

Yes, unfortunately I have been missing in action for a while. I have been doing a lot of work with uGFX and that has been consuming all my spare time.
I will be back soon to make some contributions.

Go to advanced search