打印

秀一秀我自己新作的cortex-m0 stm32f051 开发板

[复制链接]
12116|55
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
wangkj|  楼主 | 2012-12-29 21:56 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
沙发
wangkj|  楼主 | 2012-12-29 21:59 | 只看该作者
放大图

8888-2.jpg (163.48 KB )

8888-2.jpg

使用特权

评论回复
板凳
wangkj|  楼主 | 2012-12-29 22:03 | 只看该作者
原理图,pcb,gerber图,程序全套都上传了,
不缺钱的可以自己去花钱制版,自己焊接,全部开放。

stm32f0discovery_fw.zip

1.6 MB

pdf_jpg20121227122734.rar

638.23 KB

PCB20121227122617.rar

2.12 MB

DSN20121227122602.rar

96.55 KB

BOM20121227122719.rar

2.63 KB

使用特权

评论回复
评分
参与人数 2威望 +2 收起 理由
通宵敲代码 + 1
icecut + 1
地板
wangkj|  楼主 | 2012-12-29 22:05 | 只看该作者
BOM20121227122719.rar 元器件清单列表
原理图原图
pcb和gerber原图,可以直接制版
pcb图的元件封装,几千种,用的时候请对比你自己元件尺寸,不要用错
原理图,pcb图部分转换成易读的图片和pdf格式
st 原厂的的样例程序包,未改写,可以在这个板子上直接运行
原厂程序包说明和芯片资料,可以直接适合我们的板子。但烧写方式不同。
这个附件是
重定向串口终端,可以在我们或者原厂的板子上直接烧写,可以用printf,scanf等等函数,非常方便

使用特权

评论回复
5
wangkj|  楼主 | 2012-12-29 22:05 | 只看该作者
BOM20121227122719.rar 元器件清单列表
原理图原图
pcb和gerber原图,可以直接制版
pcb图的元件封装,几千种,用的时候请对比你自己元件尺寸,不要用错
原理图,pcb图部分转换成易读的图片和pdf格式
st 原厂的的样例程序包,未改写,可以在这个板子上直接运行
原厂程序包说明和芯片资料,可以直接适合我们的板子。但烧写方式不同。
这个附件是
重定向串口终端,可以在我们或者原厂的板子上直接烧写,可以用printf,scanf等等函数,非常方便

使用特权

评论回复
6
wangkj|  楼主 | 2012-12-29 22:06 | 只看该作者
BOM20121227122719.rar 元器件清单列表
原理图原图
pcb和gerber原图,可以直接制版
pcb图的元件封装,几千种,用的时候请对比你自己元件尺寸,不要用错
原理图,pcb图部分转换成易读的图片和pdf格式
st 原厂的的样例程序包,未改写,可以在这个板子上直接运行
原厂程序包说明和芯片资料,可以直接适合我们的板子。但烧写方式不同。
这个附件是
重定向串口终端,可以在我们或者原厂的板子上直接烧写,可以用printf,scanf等等函数,非常方便

使用特权

评论回复
7
wangkj|  楼主 | 2012-12-29 22:07 | 只看该作者
这是主程序,附件是全部的源码。
/**
  ******************************************************************************
  * @file    main.c
  * @author  MCD Application Team
  * @version V1.0.0
  * @date    23-March-2012
  * @brief   Main program body
  ******************************************************************************
  * @attention
  *
  * <h2><center>&copy; COPYRIGHT 2012 STMicroelectronics</center></h2>
  *
  * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
  * You may not use this file except in compliance with the License.
  * You may obtain a copy of the License at:
  *
  *        http://www.st.com/software_license_agreement_liberty_v2
  *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
  ******************************************************************************
  */

/* Includes ------------------------------------------------------------------*/
#include "main.h"
#include <stdio.h>        //printf º¯ÊýÓÃ
//#pragma import(__use_no_semihosting)
                           
struct __FILE
{
        int handle;
};

FILE __stdout;
         
int _sys_exit(int x)
{
        x = x;
        return 0;
}

/** @addtogroup STM32F0-Discovery_Demo
  * @{
  */

/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
static __IO uint32_t TimingDelay;
uint8_t BlinkSpeed = 0;

/* Private function prototypes -----------------------------------------------*/
/* Private functions ---------------------------------------------------------*/

/**
  * @brief  Main program.
  * @param  None
  * @retval None
  */
void mul99(void)
{
int i,j;
for(i=1;i<=9;i++){
  for(j=1;j<=i;j++)
  printf("%d*%d=%d\t",i,j,i*j);
  printf("\n\r");}
  for (i=30;i>0;i--)
  {
         printf("%2d\r",i);Delay(200);  
         STM_EVAL_LEDToggle(LED3);
   STM_EVAL_LEDToggle(LED4);
  }
  for(i = 32; i < 127; i++) {
  printf(" [%c %3d %2x] ", i, i, i);
  if ((i%5)==0) printf("\n\r");
  }
        printf("\n\r");
  for (i=30;i>0;i--)
  {
         printf("%2d\r",i);Delay(200);  
         STM_EVAL_LEDToggle(LED3);
   STM_EVAL_LEDToggle(LED4);
  }
}



int main(void)
{
        int  a;
  RCC_ClocksTypeDef RCC_Clocks;
  
  /* Configure LED3 and LED4 on STM32F0-Discovery */
  STM_EVAL_LEDInit(LED3);
  STM_EVAL_LEDInit(LED4);
  
  /* Initialize User_Button on STM32F0-Discovery */
  STM_EVAL_PBInit(BUTTON_USER, BUTTON_MODE_GPIO);
        /*20121224 by wangkj  www.1yq.com*/
  UART1_Configuration();
        /*-------------------------------*/
  /* SysTick end of count event each 1ms */
  RCC_GetClocksFreq(&RCC_Clocks);
  SysTick_Config(RCC_Clocks.HCLK_Frequency / 1000);
   
  /* Initiate Blink Speed variable */
  BlinkSpeed = 1;
        a=0x21;
        /*
        wangkj 20121224
        */
          /* __DATE__, __TIME__, __FILE__, __LINE__ are predefined symbols */
  STM_EVAL_LEDToggle(LED3);
  STM_EVAL_LEDToggle(LED4);
        for(a=0;a<100;a++) //clear screen
        {
          printf("\r\n" );        
  }
        printf("µÚÒ»Ò×Ƕ http://www.1YQ.com\r\n" );
  printf("Îļþ±àÒëµÄʱ¼äÈÕÆÚ\r\n" );
  printf("File : %s\r\n", __FILE__);
        printf("Date : %s\r\n", __DATE__);
  printf("Time : %s\r\n", __TIME__);
  printf("Line : %d\\r\n", __LINE__);
        mul99();
  Delay(2000);
  STM_EVAL_LEDToggle(LED3);
  STM_EVAL_LEDToggle(LED4);
  printf("³ÌÐòÎļþÃû%s,º¯ÊýÃû%s,Ö´ÐÐÐÐÊý%d\r\n",__FILE__,__func__,__LINE__);
  Delay(2000);
       
        printf("ÇëÊäÈë32-127Ö®¼äµÄÊý×Ö£¬È»ºó»Ø³µ:\r\n");
  scanf("%d",&a)        ;
        printf("ÎÞ·ûºÅÊ®½øÖÆÐÎʽ:%u\r\n",a);
        printf("Ê®Áù½øÖÆÐÎʽ:%x\r\n",a);
        printf("×Ö·ûÐÎʽ:%c\r\n",a);
  printf("³ÌÐòÎļþÃû%s,Ö´ÐÐÐÐÊý%d\r\n",__FILE__,__LINE__);
  STM_EVAL_LEDToggle(LED3);
  printf("³ÌÐòÎļþÃû%s,º¯ÊýÃû%s,Ö´ÐÐÐÐÊý%d\r\n",__FILE__,__func__,__LINE__);  STM_EVAL_LEDToggle(LED4);
  Delay(3000);
  a=0;
        while(1)
  {  
    /* Check if the user button is pressed */
    if(STM_EVAL_PBGetState(BUTTON_USER)== SET)
    {
      /* BlinkSpeed: 1 -> 2 -> 0, then re-cycle */
      /* Turn on LD4 Blue LED during 1s each time User button is pressed */
      STM_EVAL_LEDOn(LED4);
  printf("%d||³ÌÐòÎļþÃû%s,Ö´ÐÐÐÐÊý%d\r\n",a++,__FILE__,__LINE__);
      
      /* wait for 1s */
      Delay(1000);
      
      /* Turn off LD4 Blue LED after 1s each time User button is pressed */
      STM_EVAL_LEDOff(LED4);
      
      /* Increment the blink speed counter */
      BlinkSpeed++;
      
      /* Default value for blink speed counter */
      if(BlinkSpeed == 3)
      {  
        BlinkSpeed = 0;
      }
    }
   
    /* Test on blink speed */
    if(BlinkSpeed == 2)
    {
      /* LED3 toggles each 100 ms */
      STM_EVAL_LEDToggle(LED3);
  printf("%d||³ÌÐòÎļþÃû%s,Ö´ÐÐÐÐÊý%d\r\n",a++,__FILE__,__LINE__);
      
      /* maintain LED3 status for 100ms */
      Delay(100);
    }
    else if(BlinkSpeed == 1)
    {
      /* LED3 toggles each 200 ms */
      STM_EVAL_LEDToggle(LED3);
  printf("%d||³ÌÐòÎļþÃû%s,Ö´ÐÐÐÐÊý%d\r\n",a++,__FILE__,__LINE__);
      
      /* maintain LED3 status for 200ms */
      Delay(200);
    }
    else
    {  
      /* LED3 Off */
      STM_EVAL_LEDOff(LED3);
  printf("%d||³ÌÐòÎļþÃû%s,Ö´ÐÐÐÐÊý%d\r\n",a++,__FILE__,__LINE__);
    }
  }
}

/**
  * @brief  Inserts a delay time.
  * @param  nTime: specifies the delay time length, in 1 ms.
  * @retval None
  */
void Delay(__IO uint32_t nTime)
{
  TimingDelay = nTime;

  while(TimingDelay != 0);
}

/**
  * @brief  Decrements the TimingDelay variable.
  * @param  None
  * @retval None
  */
void TimingDelay_Decrement(void)
{
  if (TimingDelay != 0x00)
  {
    TimingDelay--;
  }
}

#ifdef  USE_FULL_ASSERT

/**
  * @brief  Reports the name of the source file and the source line number
  *   where the assert_param error has occurred.
  * @param  file: pointer to the source file name
  * @param  line: assert_param error line source number
  * @retval None
  */
void assert_failed(uint8_t* file, uint32_t line)
{
  /* User can add his own implementation to report the file name and line number,
     ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */

  /* Infinite loop */
  while (1)
  {}
}
#endif

/**
  * @}
  */


/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
/*******************************************************************************
* Function Name  : UART1_Configuration
* Description    : Configures the different UART1 ports.
* Input          : None
* Output         : None
* Return         : None
*******************************************************************************/
void UART1_Configuration(void)
{
  GPIO_InitTypeDef GPIO_InitStructure;
        USART_InitTypeDef USART_InitStructure;

  RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);
  RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE);       
       
  // Configure USART1_Tx as alternate function push-pull
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
        GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
  GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;       
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  GPIO_Init(GPIOA, &GPIO_InitStructure);

  // Configure USART1_Rx as input floating
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;//GPIO_Mode_IN;
  GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;       
  GPIO_Init(GPIOA, &GPIO_InitStructure);
       
        GPIO_PinAFConfig(GPIOA, GPIO_PinSource9, GPIO_AF_1);
        GPIO_PinAFConfig(GPIOA, GPIO_PinSource10, GPIO_AF_1);  
       
  USART_InitStructure.USART_BaudRate = 115200;
  USART_InitStructure.USART_WordLength = USART_WordLength_8b;
  USART_InitStructure.USART_StopBits = USART_StopBits_1;
  USART_InitStructure.USART_Parity = USART_Parity_No ;
  USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
  USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
  USART_Init(USART1, &USART_InitStructure);
       
        USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);
  /* Enable the USART1 */
  USART_Cmd(USART1, ENABLE);
}
/*******************************************************************************
* Function Name  : Uart1_PutChar
* Description    : printf a char to the uart.
* Input          : ch ÐèÒª·¢Ë͵Ä×Ö·û
* Output         : None
* Return         : None
*******************************************************************************/
uint8_t Uart1_PutChar(uint8_t ch)
{
  /* Write a character to the USART */
  USART_SendData(USART1, (uint8_t) ch);
  while(USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET)
  {
  }
  return ch;
}
/*******************************************************************************
* Function Name  : int fputc(int ch, FILE *f)
* Description    : Retargets the C library printf function to the USART.printfÖض¨Ïò
* Input          : None
* Output         : None
* Return         : None
*******************************************************************************/
int fputc(int ch, FILE *f)
{
  /* Write a character to the USART */
  USART_SendData(USART1, (uint8_t) ch);

  /* Loop until the end of transmission */
  while(USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET)
  {
  }
  return ch;
}
/**
  * @brief  Inserts a delay time.
  * @param  nTime: specifies the delay time length, in 1 ms.
  * @retval None
  */
/****************************************************************************
* Ãû    ³Æ£ºint fgetc(FILE *f)
* ¹¦    ÄÜ£ºÖض¨Òåfgetcº¯Êý£¬printfº¯Êý´ÓÖÕ¶ËÊäÈëÊý¾Ý
* Èë¿Ú²ÎÊý£ºÎÞ
* ³ö¿Ú²ÎÊý£ºÎÞ
* ˵    Ã÷£ºÎÞ
****************************************************************************/
int fgetc(FILE *f)
{
        while (USART_GetFlagStatus(USART1, USART_FLAG_RXNE) == RESET);
        return (int)USART_ReceiveData(USART1);
}

void delay(void)
{
        int i,j;
        for(i=0;i<2000;i++)
                for(j=0;j<2000;j++);
}

STM32F0-Discovery_FW_V1.0.020121227001144_scanf_printf_fix_r_n.rar

4.38 MB

使用特权

评论回复
8
wangkj|  楼主 | 2012-12-29 22:16 | 只看该作者
串口printf/scanf演示,可以用上面的程序直接烧。不知道原厂的开发板能不能这么干。
我的板子是串口直接连pc,usb pl2303能烧程序,也能通过printf调试程序技巧就是
printf("%d||³ÌÐòÎļþÃû%s,Ö´ÐÐÐÐÊý%d\r\n",a++,__FILE__,__LINE__);
乱码直接贴到你的keil就是中文,如果我这里正常,贴到你的keil就乱了。

068.jpg (198.03 KB )

068.jpg

使用特权

评论回复
9
wangkj|  楼主 | 2012-12-29 22:18 | 只看该作者
本帖最后由 wangkj 于 2012-12-29 22:19 编辑


使用特权

评论回复
10
wangkj|  楼主 | 2012-12-29 22:52 | 只看该作者
附件中是高清演示,优酷的太不清楚了

036_Stm32f051_软件_串口工作演示.rar

1.36 MB

使用特权

评论回复
11
wangkj|  楼主 | 2012-12-29 22:55 | 只看该作者
原理图的pdf格式

stm32f0_2012_1214.pdf

104.13 KB

使用特权

评论回复
12
shangwangmj| | 2012-12-29 22:55 | 只看该作者
开源好呀~

使用特权

评论回复
13
tingting8| | 2012-12-29 23:35 | 只看该作者
这板子多少钱啊 资料全不

使用特权

评论回复
14
357482894| | 2012-12-30 08:32 | 只看该作者
和DISCOVERY很像呀!

使用特权

评论回复
15
wangkj|  楼主 | 2012-12-30 09:25 | 只看该作者
本帖最后由 wangkj 于 2012-12-30 09:52 编辑

这个是discovery的改版,把他的内置st-link换成了usb ttl芯片,
用printf 调试程序,用串口烧程序。
不到50块钱包邮,想要的看我签名。当然,我的资料都是公开的,
如果方便的话,也可以自己把gerbert图送制版厂自己制版。
既然开源,就全开放,随便玩。线路板可以免费送,是某个制版厂合作的。
如果单买线路板,我这空 pcb 成本均摊大概 5 块钱 ,邮费自付。
我的线路板也是花钱自己做的。这个真不能免费。

这东西也不是我在卖,具体你找卖家商量。
http://item.taobao.com/item.htm?spm=a1z10.1.4-3058079557.15.B1vjL0&id=21841292618

使用特权

评论回复
16
xiangchli| | 2012-12-30 19:42 | 只看该作者
不错!

使用特权

评论回复
17
icecut| | 2012-12-30 19:46 | 只看该作者
不错.不过没我期待的强大.和我单片机的升级版的思路差不多...

使用特权

评论回复
18
wangkj|  楼主 | 2012-12-30 22:11 | 只看该作者
这个就是单片机。。。
现在的51比cortexm0的arm贵,还慢大概30倍。除非老设备,51这类单片机还是投降吧。
芯片内核占用面积,cortex-m0跟51一样多。cortex用更先进的工艺,成本更低!当然,m0有license费用,51没有。
m0只有销量大,才能均摊掉license费用。
你看看原厂卖了250万,兼容卖了上千万的arduino 就是这么简单的玩意,简单就是美。
越简单越容易发挥,就像汇编,无所不能,但是玩好太难。
后期我想把arduino软件移植过来,非常简单的编程。像自然语言,能让非电工玩这个板子,是我的理想。

使用特权

评论回复
19
jlass| | 2012-12-31 09:31 | 只看该作者
楼主好样的,给那些从网上收集点资料都要拿来卖钱的人做个榜样。

使用特权

评论回复
20
dong_abc| | 2012-12-31 20:40 | 只看该作者
顶一下,cortex还没有比51便宜吧 ,没见过20Pin的M0哦。

使用特权

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

本版积分规则

581

主题

9976

帖子

24

粉丝