这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » 活动中心 » 板卡试用 » 【EFM8BB52单片机】便携桌面天气预报器(串口调试

共31条 2/4 1 2 3 4 跳转至
院士
2021-12-18 22:32:09     打赏
11楼

你这么一说,又仔细看了一眼开发板。

真的有点紫铜的颜色啊


高工
2021-12-18 23:20:20     打赏
12楼

非常不错的分享


工程师
2021-12-20 10:13:23     打赏
13楼

感谢楼主分享


工程师
2021-12-20 10:26:23     打赏
14楼

不错 学习到了


工程师
2021-12-20 10:30:58     打赏
15楼

这个就是镀金的吧

只有喷锡与镀金两个选项。



工程师
2021-12-20 10:34:10     打赏
16楼

学习到了


工程师
2021-12-20 10:56:24     打赏
17楼

不错不错


专家
2021-12-20 15:22:18   被打赏 50 分(兑奖)     打赏
18楼

点灯继续:

在官方例子上进行修改,添加管脚定义,添加一个delay函数,具体如下:

//-----------------------------------------------------------------------------
// EFM8BB52_Blinky.c
//-----------------------------------------------------------------------------
// Copyright 2021 Silicon Laboratories, Inc.
// http://developer.silabs.com/legal/version/v11/Silicon_Labs_Software_License_Agreement.txt
//
// Program Description:
//
// This program flashes the red/green/blue LED on the EFM8BB52 PK board about
// five times a second using the interrupt handler for Timer2.
//
// Resources:
//   SYSCLK - 24.5 MHz HFOSC0 / 8
//   Timer2 - 5 Hz interrupt
//   P1.4   - LED0
//
//-----------------------------------------------------------------------------
// How To Test: EFM8BB52 Explorer Kit
//-----------------------------------------------------------------------------
// 1) Connect the EFM8BB52 Explorer Kit to a PC using a mini USB cable.
// 2) Compile and download code to the EFM8BB52 Explorer Kit board.
//    In Simplicity Studio IDE, select Run -> Debug from the menu bar,
//    click the Debug button in the quick menu, or press F11.
// 3) Run the code.
//    In Simplicity Studio IDE, select Run -> Resume from the menu bar,
//    click the Resume button in the quick menu, or press F8.
// 4) The LED0 should blink at approximately 5 Hz.
//
// Target:         EFM8BB52
// Tool chain:     Generic
//
// Release 0.1 (RN)
//    - Initial Revision
//
//-----------------------------------------------------------------------------
// Includes
//-----------------------------------------------------------------------------
#include <SI_EFM8BB52_Register_Enums.h>
#include <InitDevice.h>
#include <SI_EFM8BB52_Register_Enums.h>
//-----------------------------------------------------------------------------
// Pin Definitions
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// SiLabs_Startup() Routine
// ----------------------------------------------------------------------------
// This function is called immediately after reset, before the initialization
// code is run in SILABS_STARTUP.A51 (which runs before main() ). This is a
// useful place to disable the watchdog timer, which is enable by default
// and may trigger before main() in some instances.
//-----------------------------------------------------------------------------
void SiLabs_Startup (void)
{
  // Disable the watchdog here
}
SI_SBIT(LED0, SFR_P1, 4);// 这个地方定义led0为p1.4,直接命名为led0
void delay(unsigned int xms) //简单做个delay
//xms代表需要延时的毫秒数
{
unsigned
int
x,y;
for(x=xms;x>0;x--)
for(y=110;y>0;y--);
}
//-----------------------------------------------------------------------------
// Main Routine
//-----------------------------------------------------------------------------
void main (void)
{
   enter_DefaultMode_from_RESET();
   //IE_EA = 1;                          // Enable global interrupts
   while (1) {
       LED0 = !LED0;
delay(1000);
         }
   }                        // Spin forever

专家
2021-12-20 15:48:34     打赏
19楼

灯跑起来了,那么其他的外设有没有对应的资源呢?

别慌,都在这里

图片.png


院士
2021-12-20 16:52:43     打赏
20楼

学习学习


共31条 2/4 1 2 3 4 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]