打印

c8051f120 求助!

[复制链接]
4010|16
手机看帖
扫描二维码
随时随地手机跟帖
沙发
NE5532| | 2012-10-14 16:41 | 只看该作者
按数据手册IO章节部分描述操作寄存器来控制。

使用特权

评论回复
板凳
210210|  楼主 | 2012-10-14 17:16 | 只看该作者
没找到数据手册,怎么配置,I/O口电压怎么不改变呢?

使用特权

评论回复
地板
xuyaqi| | 2012-10-14 20:26 | 只看该作者
安装silicon IDE软件里面有例程

使用特权

评论回复
5
NE5532| | 2012-10-14 20:27 | 只看该作者
你还是得先把数据手册找到,不然寸步难行。

使用特权

评论回复
6
xuyaqi| | 2012-10-14 20:35 | 只看该作者
I/O口例程:
F12x_Ports_SwitchLED.c
//-----------------------------------------------------------------------------
// Copyright 2005 Silicon Laboratories, Inc.
// http://www.silabs.com
//
// Program Description:
//
// This program demonstrates how to configure port pins as digital inputs
// and outputs.  The C8051F120 target board has one push-button switch
// connected to a port pin and one LED.  The program constantly checks the
// status of the switch and if it is pushed, it turns on the LED.
//
// The program also monitors P4.0.  If P4.0 is high, it sets P4.1 low.  If
// P4.0 is low, P4.1 is set high.  The purpose of this part of the program
// is to show how to access the higher ports.  Ports 4-7 are not available
// on all SFR pages, so the SFRPAGE register must be set correctly before
// reading or writing these ports.
//
//
// How To Test:
//
// 1) Download code to a 'F120 target board
// 2) Ensure that the J1 and J3 headers are shorted
// 3) Push the button (P3.7) and see that the LED turns on
// 4) Set P4.0 high and low using an external connection and check that
//    the output on P4.1 is the inverse of P4.0
//
//
// FID:            12X000004
// Target:         C8051F12x
// Tool chain:     Keil C51 7.50 / Keil EVAL C51
// Command Line:   None
//
// Release 1.0
//    -Initial Revision (GP)
//    -15 NOV 2005
//

//-----------------------------------------------------------------------------
// Includes
//-----------------------------------------------------------------------------

#include <c8051f120.h>                 // SFR declarations

//-----------------------------------------------------------------------------
// Pin Declarations
//-----------------------------------------------------------------------------

sbit LED1    = P1^6;                   // LED1 ='1' means ON
sbit SW1     = P3^7;                   // SW1 ='0' means switch pressed
sbit INPUT1  = P4^0;                   // port pin 4.0
sbit OUTPUT1 = P4^1;                   // port pin 4.1

//-----------------------------------------------------------------------------
// Function Prototypes
//-----------------------------------------------------------------------------

void OSCILLATOR_Init (void);           
void PORT_Init (void);

//-----------------------------------------------------------------------------
// main() Routine
//-----------------------------------------------------------------------------

void main (void)
{
   WDTCN = 0xde;                       // Disable watchdog timer
   WDTCN = 0xad;

   PORT_Init();                        // Initialize Port I/O
   OSCILLATOR_Init ();                 // Initialize Oscillator
  
   while (1)
   {
      if (SW1 == 0)                    // If switch depressed
      {
         LED1 = 1;                     // Turn on LED
      }
          else   
      {  
         LED1 = 0;                     // Else, turn it off
      }               

      SFRPAGE = CONFIG_PAGE;           // set SFR page before reading or writing
                                       // to P4 registers
          
      if (INPUT1 == 0)                 // If input is low
      {
         OUTPUT1 = 1;                  // Make OUTPUT1 inverse of INPUT1
      }
          else   
      {  
         OUTPUT1 = 0;                  // Make OUTPUT1 inverse of INPUT1
      }                                
   }                                   // end of while(1)
}                                      // end of main()

//-----------------------------------------------------------------------------
// Initialization Subroutines
//-----------------------------------------------------------------------------

//-----------------------------------------------------------------------------
// OSCILLATOR_Init
//-----------------------------------------------------------------------------
//
// Return Value : None
// Parameters   : None
//
// This function initializes the system clock to use the internal oscillator
// at its maximum frequency.
//
//-----------------------------------------------------------------------------
void OSCILLATOR_Init (void)
{
   char SFRPAGE_SAVE = SFRPAGE;        // Save Current SFR page

   SFRPAGE = CONFIG_PAGE;              // set SFR page

   OSCICN |= 0x03;                     // Configure internal oscillator for
                                       // its maximum frequency (24.5 Mhz)

   SFRPAGE = SFRPAGE_SAVE;             // Restore SFR page
}

//-----------------------------------------------------------------------------
// PORT_Init
//-----------------------------------------------------------------------------
//
// Return Value : None
// Parameters   : None
//
// This function configures the crossbar and ports pins.
//
// To configure a pin as a digital input, the pin is configured as digital
// and open-drain and the port latch should be set to a '1'.  The weak-pullups
// are used to pull the pins high.  Pressing the switch pulls the pins low.
//
// To configure a pin as a digital output, the pin is configured as digital
// and push-pull.  
//
// Some ports pins do not have the option to be configured as analog or digital,
// so it not necessary to explicitly configure them as digital.
//
// An output pin can also be configured to be an open-drain output if system
// requires it.  For example, if the pin is an output on a multi-device bus,
// it will probably be configured as an open-drain output instead of a
// push-pull output.  For the purposes of this example, the pin is configured
// as push-pull output because the pin in only connected to an LED.
//
// P1.6   digital   push-pull     LED1
// P3.7   digital   open-drain    Switch 1
// P4.0   digital   open-drain    Input 1
// P4.1   digital   push-pull     Output 1
//-----------------------------------------------------------------------------
void PORT_Init (void)
{
   char SFRPAGE_SAVE = SFRPAGE;        // Save Current SFR page

   SFRPAGE = CONFIG_PAGE;              // set SFR page before writing to
                                       // registers on this page

   P1MDIN |= 0x40;                     // P1.6 is digital

   P1MDOUT = 0x40;                     // P1.6 is push-pull
   P3MDOUT = 0x00;                     // P3.7 is open-drain

   P3     |= 0x80;                     // Set P3.7 latch to '1'

   P4MDOUT = 0x02;                     // P4.0 is open-drain; P4.1 is push-pull
   P4      = 0x01;                     // Set P4.1 latch to '1'


   XBR2    = 0x40;                     // Enable crossbar and enable
                                       // weak pull-ups

   SFRPAGE = SFRPAGE_SAVE;             // Restore SFR page
}


//-----------------------------------------------------------------------------
// End Of File
//-----------------------------------------------------------------------------

使用特权

评论回复
7
56007904| | 2012-10-14 22:10 | 只看该作者

RE: c8051f120 求助!

看PDF手册和新华龙网站上的评估板例程就知道了!建议先了解交叉开关的MCU配置软件!

使用特权

评论回复
8
210210|  楼主 | 2012-10-14 22:26 | 只看该作者
谢谢楼上的各位啦。呵呵

使用特权

评论回复
9
菜鸟同学| | 2012-10-14 23:49 | 只看该作者
没数据手册一切都是徒劳。

使用特权

评论回复
10
davidzkw| | 2012-10-15 11:04 | 只看该作者
C8051F系列有配置工具,能自动生成配置代码,省去查手册及配置寄存器的麻烦,可以去其网站下载

使用特权

评论回复
11
cym_anhui| | 2012-10-15 11:25 | 只看该作者
看看datasheet就好了

使用特权

评论回复
12
szseo668| | 2012-10-15 11:28 | 只看该作者
datasheet这个真的不错。

使用特权

评论回复
13
ayb_ice| | 2012-10-15 11:52 | 只看该作者
=0,=1

使用特权

评论回复
14
shell.albert| | 2012-10-15 14:00 | 只看该作者
C8051F系列有配置工具装不好会把电脑装瘫痪了,我就装瘫痪了就再没装
dwh000 发表于 2012-10-15 13:39

你,你,你,,,,,
唉。。。。

使用特权

评论回复
15
jlass| | 2012-10-15 14:18 | 只看该作者
18# dwh000
I服了you

使用特权

评论回复
16
ayb_ice| | 2012-10-15 14:42 | 只看该作者
C8051F系列有配置工具装不好会把电脑装瘫痪了,我就装瘫痪了就再没装
dwh000 发表于 2012-10-15 13:39

人品有问题吧

使用特权

评论回复
17
21IC_419677830| | 2012-10-15 15:04 | 只看该作者
要考虑到寄存器页地址的切换

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

0

主题

20

帖子

0

粉丝