Electronics development

Moderators: None (Apply to moderate this forum)
Number of threads: 541
Number of posts: 1056

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
dereferencing an enum within a structure in a function Posted by hw on 22 Sept 2010 at 12:30 PM
Can someone tell me how to make the following work.
This code lives in a .h file

typedef enum tag_timerA0srcclk { UCLK = 0,
ACLK,
SMCLK
}timerA0srcclk;

typedef enum { upDown = 0,
up
}timerA0mode;

typedef struct timer_info
{
timerA0srcclk ClkSource;
int ClkDivisor;
timerA0mode mode;
int CountValue;
}timerA0_2274;

//Declarations
void configTimerA0(timerA0_2274 *p);

//Definition
void configTimerA0(timerA0_2274 *p)
{
switch (p -> Clksource)

I get the following error on the switch ... line

struct "timer_info" has no field "Clksource"

Being a hardware guy I have not been able to figure this one out Can anyone help????

Thanks,
hw



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.