<acronym id="s8ci2"><small id="s8ci2"></small></acronym>
<rt id="s8ci2"></rt><rt id="s8ci2"><optgroup id="s8ci2"></optgroup></rt>
<acronym id="s8ci2"></acronym>
<acronym id="s8ci2"><center id="s8ci2"></center></acronym>
0
  • 聊天消息
  • 系統消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發帖/加入社區
創作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內不再提示

基于RASC的keil電子時鐘制作(瑞薩RA)(9)----保存數據到flash

嵌入式單片機MCU開發 ? 來源:嵌入式單片機MCU開發 ? 作者:嵌入式單片機MCU開 ? 2023-12-01 15:12 ? 次閱讀

概述

本篇文章主要介紹如何使用e2studio對瑞薩進行Flash配置,并且分別對Code Flash & Data Flash進行讀寫操作。
Flash有Code Flash(儲存程序代碼)以及Data Flash(儲存一般數據),其中Code Flash主要以NOR型為主,儲存系統程序代碼及小量數據;而Data Flash則是以NAND型為主,用于儲存大量數據。

硬件準備

首先需要準備一個開發板,這里我準備的是芯片型號R7FA2E1A72DFL的開發板:

在這里插入圖片描述

在這里插入圖片描述

視頻教程

https://www.bilibili.com/video/BV1PM4y1p7Ue/

Flash

對Code Flash進行讀寫操作時候,特別要注意寫的地址,因為如果寫的不對,會覆蓋到代碼區,造成運行錯誤,同時對于擦除,是一塊的數據都會直接擦除掉。
在RA2E1中,Code flash最高為128KB,Data flash為4KB。
在這里插入圖片描述

FLASH配置

點擊Stacks->New Stack->Storage -> Flash (r_flash_lp)。

在這里插入圖片描述

FLASH屬性配置

在這里插入圖片描述

Data Flash

對Data Flash進行讀寫操作時候,特別要注意要等待Data Flash寫完才能進行后續讀寫操作。
在RA2E1中,Data Flash分布如下所示。
在這里插入圖片描述

回調函數的話有下列事件會進行觸發。

在這里插入圖片描述
建flash_smg.c和flash_smg.h。
在主程序中加入該頭文件
在這里插入圖片描述

回調函數如下所示,在flash_smg.c里。

volatile bool               interrupt_called;
volatile flash_event_t      flash_event;


void flash_callback (flash_callback_args_t * p_args)
{
    interrupt_called = true;
    flash_event      = p_args- >event;
}

向Block0種寫入時間分鐘數據和小時數據,地址范圍是0x40100000 - 0x40100FFF,在flash_smg.c里定義

extern fsp_err_t err ;
/*FLASH寫入程序*/
void WriteFlashTest(uint32_t L,uint8_t Data[],uint32_t addr)
{


    interrupt_called = false;
    /* Erase 1 block of data flash starting at block 0. */
    err = R_FLASH_LP_Erase(&g_flash0_ctrl, FLASH_DF_BLOCK_0, 1);
    assert(FSP_SUCCESS == err);
    while (!interrupt_called)
    {
    ;
    }
    assert(FLASH_EVENT_ERASE_COMPLETE == flash_event);
    interrupt_called = false;
    flash_status_t status;
    /* Write 32 bytes to the first block of data flash. */
    err = R_FLASH_LP_Write(&g_flash0_ctrl, (uint32_t) Data, addr, L);
    assert(FSP_SUCCESS == err);

    /* Wait until the current flash operation completes. */
    do
    {
        err = R_FLASH_LP_StatusGet(&g_flash0_ctrl, &status);
    } while ((FSP_SUCCESS == err) && (FLASH_STATUS_BUSY == status));


    /* If the interrupt wasn't called process the error. */
    assert(interrupt_called);
    /* If the event wasn't a write complete process the error. */
    assert(FLASH_EVENT_WRITE_COMPLETE == flash_event);
    /* Verify the data was written correctly. */
    assert(0 == memcmp(Data, (uint8_t *) FLASH_DF_BLOCK_0, L));


}

在主程序中定義標志位進行數據保存判斷。

volatile uint8_t g_src_uint8[4]={0x00,0x00,0x00,0x00};//時間保存在該數組里面
volatile uint8_t  g_src_uint8_length=4;
uint8_t flash_flag=0;//保存時間數據,一半在每過一分鐘或者按鍵修改時間

在這里插入圖片描述

在main主程序中,定義在按鍵修改完畢數據后進行保存。

if(flash_flag)//按鍵修改完畢數據后進行保存
           {
               g_src_uint8[0]=hour;
               g_src_uint8[1]=min;
               WriteFlashTest(4,g_src_uint8 ,FLASH_DF_BLOCK_0);
               flash_flag=0;
           }

在這里插入圖片描述
同時需要在按鍵設置完畢進行數據保存,模式3中需要定義標志位為1。

flash_flag=1;//保存數據

在這里插入圖片描述

同時需要注意變量引入到timer_smg.c。

extern uint8_t flash_flag;//保存時間數據,一半在每過一分鐘或者按鍵修改時間

在這里插入圖片描述

同時在RTC時鐘走到0秒時候保存一次數據。

g_src_uint8[0]=hour;
                   g_src_uint8[1]=min;
                   WriteFlashTest(4,g_src_uint8 ,FLASH_DF_BLOCK_0);

在這里插入圖片描述

讀取函數如下所示,在flash_smg.h中。

extern int sec,min,hour;//保存時間數據
/*FLASH讀取打印程序*/
void PrintFlashTest(uint32_t addr)
{
    hour=*(__IO uint8_t*)(addr);
    min=*(__IO uint8_t*)(addr+1);

    if(hour >=24)
        hour=0;
    if(min >=60)
        min=0;
}

同時在主程序中開啟flash以及將保存的數據讀取出來。
由于需要在RTC開啟時放入該數據 ,故需要放在RTC開啟前面。

/**********************data flash***************************************/
       flash_result_t blank_check_result;
       /* Open the flash lp instance. */
    	err = R_FLASH_LP_Open(&g_flash0_ctrl, &g_flash0_cfg);
       assert(FSP_SUCCESS == err);

//       WriteFlashTest(4,g_src_uint8 ,FLASH_DF_BLOCK_0);

       PrintFlashTest(FLASH_DF_BLOCK_0);


       set_time.tm_sec=0;//時間數據 秒
       set_time.tm_min=min;//時間數據 分鐘
       hour=set_time.tm_hour=hour;//時間數據 小時

在這里插入圖片描述

flash_smg.c

/*
 * flash_smg.c
 *
 *  Created on: 2023年7月5日
 *      Author: a8456
 */
#include "flash_smg.h"

volatile bool               interrupt_called;
volatile flash_event_t      flash_event;


void flash_callback (flash_callback_args_t * p_args)
{
    interrupt_called = true;
    flash_event      = p_args- >event;
}


extern fsp_err_t err ;
/*FLASH寫入程序*/
void WriteFlashTest(uint32_t L,uint8_t Data[],uint32_t addr)
{


    interrupt_called = false;
    /* Erase 1 block of data flash starting at block 0. */
    err = R_FLASH_LP_Erase(&g_flash0_ctrl, FLASH_DF_BLOCK_0, 1);
    assert(FSP_SUCCESS == err);
    while (!interrupt_called)
    {
    ;
    }
    assert(FLASH_EVENT_ERASE_COMPLETE == flash_event);
    interrupt_called = false;
    flash_status_t status;
    /* Write 32 bytes to the first block of data flash. */
    err = R_FLASH_LP_Write(&g_flash0_ctrl, (uint32_t) Data, addr, L);
    assert(FSP_SUCCESS == err);

    /* Wait until the current flash operation completes. */
    do
    {
        err = R_FLASH_LP_StatusGet(&g_flash0_ctrl, &status);
    } while ((FSP_SUCCESS == err) && (FLASH_STATUS_BUSY == status));


    /* If the interrupt wasn't called process the error. */
    assert(interrupt_called);
    /* If the event wasn't a write complete process the error. */
    assert(FLASH_EVENT_WRITE_COMPLETE == flash_event);
    /* Verify the data was written correctly. */
    assert(0 == memcmp(Data, (uint8_t *) FLASH_DF_BLOCK_0, L));


}

extern int sec,min,hour;//保存時間數據
/*FLASH讀取打印程序*/
void PrintFlashTest(uint32_t addr)
{
    hour=*(__IO uint8_t*)(addr);
    min=*(__IO uint8_t*)(addr+1);

    if(hour >=24)
        hour=0;
    if(min >=60)
        min=0;
}

flash_smg.h

/*
 * flash_smg.h
 *
 *  Created on: 2023年6月29日
 *      Author: a8456
 */

#ifndef FLASH_SMG_H_
#define FLASH_SMG_H_

#include "hal_data.h"

#define FLASH_DF_BLOCK_0                0x40100000U/*   1 KB: 0x40100000 - 0x401003FF */

/*FLASH寫入程序*/
void WriteFlashTest(uint32_t L,uint8_t Data[],uint32_t addr);
/*FLASH讀取打印程序*/
void PrintFlashTest(uint32_t addr);

#endif /* FLASH_SMG_H_ */

主程序

#include "hal_data.h"
#include < stdio.h >
#include "smg.h"
#include "timer_smg.h"
#include "flash_smg.h"
FSP_CPP_HEADER
void R_BSP_WarmStart(bsp_warm_start_event_t event);
FSP_CPP_FOOTER

//數碼管變量
uint8_t num1=1,num2=4,num3=6,num4=8;//4個數碼管顯示的數值
uint8_t num_flag=0;//4個數碼管和冒號輪流顯示,一輪刷新五次

//RTC變量
/* rtc_time_t is an alias for the C Standard time.h struct 'tm' */
rtc_time_t set_time =
{
    .tm_sec  = 50,      /* 秒,范圍從 0 到 59 */
    .tm_min  = 59,      /* 分,范圍從 0 到 59 */
    .tm_hour = 23,      /* 小時,范圍從 0 到 23*/
    .tm_mday = 29,       /* 一月中的第幾天,范圍從 0 到 30*/
    .tm_mon  = 11,      /* 月份,范圍從 0 到 11*/
    .tm_year = 123,     /* 自 1900 起的年數,2023為123*/
    .tm_wday = 6,       /* 一周中的第幾天,范圍從 0 到 6*/
//    .tm_yday=0,         /* 一年中的第幾天,范圍從 0 到 365*/
//    .tm_isdst=0;        /* 夏令時*/
};


//RTC鬧鐘變量
rtc_alarm_time_t set_alarm_time=
{
     .time.tm_sec  = 58,      /* 秒,范圍從 0 到 59 */
     .time.tm_min  = 59,      /* 分,范圍從 0 到 59 */
     .time.tm_hour = 23,      /* 小時,范圍從 0 到 23*/
     .time.tm_mday = 29,       /* 一月中的第幾天,范圍從 1 到 31*/
     .time.tm_mon  = 11,      /* 月份,范圍從 0 到 11*/
     .time.tm_year = 123,     /* 自 1900 起的年數,2023為123*/
     .time.tm_wday = 6,       /* 一周中的第幾天,范圍從 0 到 6*/

     .sec_match        =  1,//每次秒到達設置的進行報警
     .min_match        =  0,
     .hour_match       =  0,
     .mday_match       =  0,
     .mon_match        =  0,
     .year_match       =  0,
     .dayofweek_match  =  0,
    };

bsp_io_level_t sw1;//按鍵SW1狀態
bsp_io_level_t sw2;//按鍵SW2狀態
bsp_io_level_t sw3;//按鍵SW3狀態
bsp_io_level_t sw4;//按鍵SW4狀態
bsp_io_level_t qe_sw;//觸摸電容狀態

int sw1_num1=0;//按鍵SW1計數值,去抖和長按短按判斷
int sw2_num1=0;//按鍵SW2計數值,去抖和長按短按判斷
int sw3_num1=0;//按鍵SW3計數值,去抖和長按短按判斷
int sw4_num1=0;//按鍵SW4計數值,去抖和長按短按判斷
int qe_sw_num1=0;//觸摸按鍵計數值,去抖和長按短按判斷
void qe_touch_sw(void);

//數碼管顯示狀態,0正常顯示,1修改小時,2修改分鐘,3保存修改數據,4溫度,5濕度
int smg_mode=0;
int sec=0,min=0,hour=0;//保存時間數據
uint16_t time_mode_num=0;//定時器刷新時間,實現閃爍效果

volatile uint8_t g_src_uint8[4]={0x00,0x00,0x00,0x00};//時間保存在該數組里面
volatile uint8_t  g_src_uint8_length=4;
uint8_t flash_flag=0;//保存時間數據,一半在每過一分鐘或者按鍵修改時間


//RTC回調函數
volatile bool rtc_flag = 0;//RTC延時1s標志位
volatile bool rtc_alarm_flag = 0;//RTC鬧鐘
/* Callback function */
void rtc_callback(rtc_callback_args_t *p_args)
{
    /* TODO: add your own code here */
    if(p_args- >event == RTC_EVENT_PERIODIC_IRQ)
        rtc_flag=1;
    else if(p_args- >event == RTC_EVENT_ALARM_IRQ)
        rtc_alarm_flag=1;
}


fsp_err_t err = FSP_SUCCESS;
volatile bool uart_send_complete_flag = false;
void user_uart_callback (uart_callback_args_t * p_args)
{
    if(p_args- >event == UART_EVENT_TX_COMPLETE)
    {
        uart_send_complete_flag = true;
    }
}

#ifdef __GNUC__                                 //串口重定向
    #define PUTCHAR_PROTOTYPE int __io_putchar(int ch)
#else
    #define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f)
#endif

PUTCHAR_PROTOTYPE
{
        err = R_SCI_UART_Write(&g_uart9_ctrl, (uint8_t *)&ch, 1);
        if(FSP_SUCCESS != err) __BKPT();
        while(uart_send_complete_flag == false){}
        uart_send_complete_flag = false;
        return ch;
}

int _write(int fd,char *pBuffer,int size)
{
    for(int i=0;i< size;i++)
    {
        __io_putchar(*pBuffer++);
    }
    return size;
}


/*******************************************************************************************************************//**
 * main() is generated by the RA Configuration editor and is used to generate threads if an RTOS is used.  This function
 * is called by main() when no RTOS is used.
 **********************************************************************************************************************/
void hal_entry(void)
{
    /* TODO: add your own code here */

    /* Open the transfer instance with initial configuration. */
       err = R_SCI_UART_Open(&g_uart9_ctrl, &g_uart9_cfg);
       assert(FSP_SUCCESS == err);
/**********************數碼管測試***************************************/
//              ceshi_smg();
/**********************定時器開啟***************************************/
    /* Initializes the module. */
    err = R_GPT_Open(&g_timer0_ctrl, &g_timer0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);
    /* Start the timer. */
    (void) R_GPT_Start(&g_timer0_ctrl);

/**********************data flash***************************************/
    flash_result_t blank_check_result;
    /* Open the flash lp instance. */
    err = R_FLASH_LP_Open(&g_flash0_ctrl, &g_flash0_cfg);
    assert(FSP_SUCCESS == err);

    //       WriteFlashTest(4,g_src_uint8 ,FLASH_DF_BLOCK_0);

    PrintFlashTest(FLASH_DF_BLOCK_0);


    set_time.tm_sec=0;//時間數據 秒
    set_time.tm_min=min;//時間數據 分鐘
    hour=set_time.tm_hour=hour;//時間數據 小時



/**********************RTC開啟***************************************/
    /* Initialize the RTC module*/
    err = R_RTC_Open(&g_rtc0_ctrl, &g_rtc0_cfg);
    /* Handle any errors. This function should be defined by the user. */
    assert(FSP_SUCCESS == err);

    /* Set the RTC clock source. Can be skipped if "Set Source Clock in Open" property is enabled. */
    R_RTC_ClockSourceSet(&g_rtc0_ctrl);

/* R_RTC_CalendarTimeSet must be called at least once to start the RTC */
    R_RTC_CalendarTimeSet(&g_rtc0_ctrl, &set_time);
    /* Set the periodic interrupt rate to 1 second */
    R_RTC_PeriodicIrqRateSet(&g_rtc0_ctrl, RTC_PERIODIC_IRQ_SELECT_1_SECOND);

           R_RTC_CalendarAlarmSet(&g_rtc0_ctrl, &set_alarm_time);
           uint8_t rtc_second= 0;      //秒
           uint8_t rtc_minute =0;      //分
           uint8_t rtc_hour =0;         //時
           uint8_t rtc_day =0;          //日
           uint8_t rtc_month =0;      //月
           uint16_t rtc_year =0;        //年
           uint8_t rtc_week =0;        //周
           rtc_time_t get_time;


           sec=set_time.tm_sec;//時間數據 秒
            min=set_time.tm_min;//時間數據 分鐘
            hour=set_time.tm_hour;//時間數據 小時

       while(1)
       {
           if(flash_flag)//按鍵修改完畢數據后進行保存
           {
               g_src_uint8[0]=hour;
               g_src_uint8[1]=min;
               WriteFlashTest(4,g_src_uint8 ,FLASH_DF_BLOCK_0);
               flash_flag=0;
           }


           if(rtc_flag)
           {
               R_RTC_CalendarTimeGet(&g_rtc0_ctrl, &get_time);//獲取RTC計數時間
               rtc_flag=0;
               rtc_second=get_time.tm_sec;//秒
               rtc_minute=get_time.tm_min;//分
               rtc_hour=get_time.tm_hour;//時
               rtc_day=get_time.tm_mday;//日
               rtc_month=get_time.tm_mon;//月
               rtc_year=get_time.tm_year; //年
               rtc_week=get_time.tm_wday;//周
               printf(" %d y %d m %d d %d h %d m %d s %d wn",rtc_year+1900,rtc_month,rtc_day,rtc_hour,rtc_minute,rtc_second,rtc_week);

                //時間顯示
               num1=rtc_hour/10;
               num2=rtc_hour%10;

               num3=rtc_minute/10;
               num4=rtc_minute%10;
               if(rtc_second==0&&smg_mode==0)//這個時候刷新變量
               {
                   sec=rtc_second;//時間數據 秒
                   min=rtc_minute;//時間數據 分鐘
                   hour=rtc_hour;//時間數據 小時

                   g_src_uint8[0]=hour;
                   g_src_uint8[1]=min;
                   WriteFlashTest(4,g_src_uint8 ,FLASH_DF_BLOCK_0);


               }
           }
           if(rtc_alarm_flag)
           {
               rtc_alarm_flag=0;
               printf("/************************Alarm Clock********************************/n");
           }
           set_smg_button();
           R_BSP_SoftwareDelay(10U, BSP_DELAY_UNITS_MILLISECONDS);
       }

#if BSP_TZ_SECURE_BUILD
    /* Enter non-secure code */
    R_BSP_NonSecureEnter();
#endif
}

審核編輯:湯梓紅

聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。 舉報投訴
  • FlaSh
    +關注

    關注

    10

    文章

    1551

    瀏覽量

    146671
  • 瑞薩
    +關注

    關注

    32

    文章

    22214

    瀏覽量

    84915
  • keil
    +關注

    關注

    68

    文章

    1196

    瀏覽量

    165315
  • 電子時鐘
    +關注

    關注

    11

    文章

    197

    瀏覽量

    24124
收藏 人收藏

    評論

    相關推薦

    基于RASCkeil電子時鐘制作(瑞薩RA)(1)----安裝RASC

    RA Smart Configurator"是一種基于"靈活組合軟件"概念的代碼生成輔助工具。它可以自動生成微控制器的初始配置程序。該工具提供了基本的引腳配置功能,并提
    的頭像 發表于 12-01 14:39 ?346次閱讀
    基于<b class='flag-5'>RASC</b>的<b class='flag-5'>keil</b><b class='flag-5'>電子時鐘</b><b class='flag-5'>制作</b>(瑞薩<b class='flag-5'>RA</b>)(1)----安裝<b class='flag-5'>RASC</b>

    基于RASCkeil電子時鐘制作(瑞薩RA)(2)----配置keil以及使用串口進行打印

    本篇文章主要介紹了一種基于瑞薩RA系列微控制器的電子時鐘制作方法,重點關注如何利用瑞薩RA Smart Configurator生成串口配置,以及在具體實踐中如何對瑞薩
    的頭像 發表于 12-01 14:47 ?388次閱讀
    基于<b class='flag-5'>RASC</b>的<b class='flag-5'>keil</b><b class='flag-5'>電子時鐘</b><b class='flag-5'>制作</b>(瑞薩<b class='flag-5'>RA</b>)(2)----配置<b class='flag-5'>keil</b>以及使用串口進行打印

    RA4系列開發板體驗】+ Keil環境下的LED編程

    我使用了Keil軟件進行了LED程序的開發。一、開發環境的建立1、安裝Keil編程軟件。我想,凡是參加該活動的朋友的計算機里面肯定已經安裝了Keil軟件。2、安裝RA軟件包。該軟件可以
    發表于 11-14 21:56

    RA4系列開發板體驗】開發環境搭建和新手點燈指南

    RA4系列開發板體驗】開發環境搭建和新手點燈指南修改記錄:2022-11-20 初版開始2022-11-24 初版完成本文介紹將如何從零搭建RA4M2
    發表于 11-24 22:54

    RA4系列開發板體驗】Keil開發環境搭建+初探IO操作

    前言: 非常感謝電子發燒友和生態工作室能夠給這次試用開發板的機會,后續根據生RA態工作室提供的資料進行功能測試。此篇根據RA Smart
    發表于 11-29 14:50

    RA4系列開發板體驗】開箱

    首先感謝電子 & 電子發燒友給與的機會。RA-Eco-RA4M2-100PIN基于R7FA4M2AD3CFP MCU,采用了Co
    發表于 12-05 08:28

    RA4系列開發板體驗】10. 我的試用總結

    之前發帖:【RA4系列開發板體驗】1. 新建工程+按鍵控制LED【RA4系列開發板體驗】
    發表于 12-10 22:34

    RA4系列開發板體驗】1、開發板要來了(1)

    了,先體現進行一下準備工作。由于板子還沒有到手,咱們主要先了解一下開發環境。RA系列的單片機有一個自己的開發環境e2 studio,這個是官方首推的,是
    發表于 12-12 17:04

    RA4系列開發板體驗】體驗過程

    、使用 RASC 生成 Keil 工程+點亮LED參照“ 【RA4系列開發板體驗】2. 使用RASC
    發表于 12-18 16:20

    RA4系列開發板體驗】+ 開發環境搭建

    pack就可以支持RA系列所有的MCU。這個pack可以從官網下載。安裝之后,需要新建一個keil的工程。這里必須要使用RA Smart
    發表于 12-21 23:50

    RA4M2設計挑戰賽】1. RASC配置FreeRTOS

    過往分享下面是參加RA4M2使用活動的分享:【RA4系列開發板體驗】1. 新建工程+按鍵控制LED【
    發表于 02-11 19:17

    RA4M2-KEIL-RTOS+使用線程方式驅動LED

    一、前言RA4M2開發板能夠使用KEIL編寫程序,并調試,但是使用JLINK下載的話要注版本,開發板自帶串口下載,使用USB-TPYE-C下載線使用公司的芯片程序下載軟件也能夠快速
    發表于 03-05 21:56

    FPB-RA6E1快速原型板】簡單開箱和RASC+Keil開發環境搭建

    不支持RA系列MCU,需要安裝RA系列MCU Keil支持包才能支持RA系列MCU。 FSP
    發表于 05-22 23:13

    FPB-RA6E1快速原型板】CoreMark移植完全指南——UART輸出和SysTick計時

    性能的程序,類似PC上的Cinebench、CPU-Z之類的CPU性能測試工具。 了解了CoreMark是什么之后,接下來我們嘗試在FPB-RA6E1快速原型板上跑一下CoreMark,看看分數
    發表于 05-28 17:18

    FPB-RA6E1快速原型板】使用TinyMaix識別手寫數字

    中找到。 所以,在我們這次試用的主角FPB-RA6E1快速原型板上運行TinyMaix完全是沒有任何壓力的(1MB Flash 256KB SRAM)。接下來,我將介紹如何在
    發表于 06-04 21:39
    亚洲欧美日韩精品久久_久久精品AⅤ无码中文_日本中文字幕有码在线播放_亚洲视频高清不卡在线观看
    <acronym id="s8ci2"><small id="s8ci2"></small></acronym>
    <rt id="s8ci2"></rt><rt id="s8ci2"><optgroup id="s8ci2"></optgroup></rt>
    <acronym id="s8ci2"></acronym>
    <acronym id="s8ci2"><center id="s8ci2"></center></acronym>