Mouse code for the MacroRat

Dependencies:   ITG3200 QEI

Committer:
sahilmgandhi
Date:
Sat Jun 03 00:22:44 2017 +0000
Revision:
46:b156ef445742
Parent:
18:6a4db94011d3
Final code for internal battlebot competition.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sahilmgandhi 18:6a4db94011d3 1 /* mbed Microcontroller Library
sahilmgandhi 18:6a4db94011d3 2 * Copyright (c) 2015-2016 Nuvoton
sahilmgandhi 18:6a4db94011d3 3 *
sahilmgandhi 18:6a4db94011d3 4 * Licensed under the Apache License, Version 2.0 (the "License");
sahilmgandhi 18:6a4db94011d3 5 * you may not use this file except in compliance with the License.
sahilmgandhi 18:6a4db94011d3 6 * You may obtain a copy of the License at
sahilmgandhi 18:6a4db94011d3 7 *
sahilmgandhi 18:6a4db94011d3 8 * http://www.apache.org/licenses/LICENSE-2.0
sahilmgandhi 18:6a4db94011d3 9 *
sahilmgandhi 18:6a4db94011d3 10 * Unless required by applicable law or agreed to in writing, software
sahilmgandhi 18:6a4db94011d3 11 * distributed under the License is distributed on an "AS IS" BASIS,
sahilmgandhi 18:6a4db94011d3 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
sahilmgandhi 18:6a4db94011d3 13 * See the License for the specific language governing permissions and
sahilmgandhi 18:6a4db94011d3 14 * limitations under the License.
sahilmgandhi 18:6a4db94011d3 15 */
sahilmgandhi 18:6a4db94011d3 16
sahilmgandhi 18:6a4db94011d3 17 #include "flash_api.h"
sahilmgandhi 18:6a4db94011d3 18 #include "flash_data.h"
sahilmgandhi 18:6a4db94011d3 19 #include "mbed_critical.h"
sahilmgandhi 18:6a4db94011d3 20
sahilmgandhi 18:6a4db94011d3 21 // This is a flash algo binary blob. It is PIC (position independent code) that should be stored in RAM
sahilmgandhi 18:6a4db94011d3 22 // NOTE: On ARMv7-M/ARMv8-M, instruction fetches are always little-endian.
sahilmgandhi 18:6a4db94011d3 23 static uint32_t FLASH_ALGO[] = {
sahilmgandhi 18:6a4db94011d3 24 0x4603b530, 0x2164460c, 0x4dd72059, 0x20166028, 0xf8c5070d, 0x20880100, 0x0100f8c5, 0xf8d006c0,
sahilmgandhi 18:6a4db94011d3 25 0xf0000100, 0xb9080001, 0xbd302001, 0x680048cf, 0x0004f040, 0x4580f04f, 0x0200f8c5, 0xf8d04628,
sahilmgandhi 18:6a4db94011d3 26 0xf0400204, 0xf8c50004, 0xbf000204, 0xf1a11e08, 0xd1fb0101, 0x680048c6, 0x002df040, 0x60284dc4,
sahilmgandhi 18:6a4db94011d3 27 0x68004628, 0x0001f000, 0x2001b908, 0x48c0e7dd, 0xf0406800, 0x4dbe0040, 0x20006028, 0x4601e7d5,
sahilmgandhi 18:6a4db94011d3 28 0x48bbbf00, 0xf0006900, 0x28000001, 0x48b8d1f9, 0xf0206800, 0x4ab6002d, 0x20006010, 0x60104ab2,
sahilmgandhi 18:6a4db94011d3 29 0x46014770, 0x48b2bf00, 0xf0006900, 0x28000001, 0x48afd1f9, 0xf0406800, 0x4aad0040, 0x20226010,
sahilmgandhi 18:6a4db94011d3 30 0xf02160d0, 0x60500003, 0x61102001, 0x8f60f3bf, 0x48a7bf00, 0xf0006900, 0x28000001, 0x48a4d1f9,
sahilmgandhi 18:6a4db94011d3 31 0xf0006800, 0xb1380040, 0x680048a1, 0x0040f040, 0x60104a9f, 0x47702001, 0xe7fc2000, 0x4604b570,
sahilmgandhi 18:6a4db94011d3 32 0x4615460b, 0x46292200, 0x000ff103, 0x030ff020, 0x4897bf00, 0xf0006900, 0x28000001, 0x4894d1f9,
sahilmgandhi 18:6a4db94011d3 33 0xf0406800, 0x4e920040, 0xf0246030, 0x6070000f, 0x60f02027, 0x1c524610, 0x0020f851, 0x36804e8c,
sahilmgandhi 18:6a4db94011d3 34 0x46106030, 0xf8511c52, 0x4e890020, 0x0084f8c6, 0x1c524610, 0x0020f851, 0x36884e85, 0x46106030,
sahilmgandhi 18:6a4db94011d3 35 0xf8511c52, 0x1d360020, 0x20016030, 0x61304e80, 0xe02c3b10, 0x487ebf00, 0x680030c0, 0x0030f000,
sahilmgandhi 18:6a4db94011d3 36 0xd1f82800, 0x1c524610, 0x0020f851, 0x36804e78, 0x46106030, 0xf8511c52, 0x4e750020, 0x0084f8c6,
sahilmgandhi 18:6a4db94011d3 37 0x4873bf00, 0x680030c0, 0x00c0f000, 0xd1f82800, 0x1c524610, 0x0020f851, 0x36884e6d, 0x46106030,
sahilmgandhi 18:6a4db94011d3 38 0xf8511c52, 0x4e6a0020, 0x008cf8c6, 0x2b003b10, 0xbf00d1d0, 0x69004866, 0x0001f000, 0xd1f92800,
sahilmgandhi 18:6a4db94011d3 39 0xb510bd70, 0x1cc84603, 0x0103f020, 0x4860bf00, 0xf0006900, 0x28000001, 0x485dd1f9, 0xf0406800,
sahilmgandhi 18:6a4db94011d3 40 0x4c5b0040, 0x20216020, 0xe02060e0, 0x0003f023, 0x60604c57, 0x60a06810, 0x61202001, 0x8f60f3bf,
sahilmgandhi 18:6a4db94011d3 41 0x4853bf00, 0xf0006900, 0x28000001, 0x4850d1f9, 0xf0006800, 0xb1380040, 0x6800484d, 0x0040f040,
sahilmgandhi 18:6a4db94011d3 42 0x60204c4b, 0xbd102001, 0x1d121d1b, 0x29001f09, 0x2000d1dc, 0xe92de7f7, 0x460547f0, 0x4616460c,
sahilmgandhi 18:6a4db94011d3 43 0x0800f04f, 0xbf0046c2, 0x69004841, 0x0001f000, 0xd1f92800, 0x6800483e, 0x0040f040, 0x6008493c,
sahilmgandhi 18:6a4db94011d3 44 0xf0201ce0, 0xe02d0403, 0xb958b2e8, 0xd9092cff, 0x7780f44f, 0x0208eb06, 0x46284639, 0xff2ef7ff,
sahilmgandhi 18:6a4db94011d3 45 0xe0164682, 0x0008f3c5, 0x2c10b958, 0xf024d309, 0xeb06070f, 0x46390208, 0xf7ff4628, 0x4682ff1f,
sahilmgandhi 18:6a4db94011d3 46 0x4627e007, 0x0208eb06, 0x46284639, 0xff89f7ff, 0x443d4682, 0x1be444b8, 0x0f00f1ba, 0x2001d002,
sahilmgandhi 18:6a4db94011d3 47 0x87f0e8bd, 0xd1cf2c00, 0xe7f92000, 0x1ccbb510, 0x0103f023, 0x4b1ebf00, 0xf003691b, 0x2b000301,
sahilmgandhi 18:6a4db94011d3 48 0x4b1bd1f9, 0xf043681b, 0x4c190340, 0x23006023, 0xe02560e3, 0x0303f020, 0x60634c15, 0x60a32300,
sahilmgandhi 18:6a4db94011d3 49 0x61232301, 0x8f60f3bf, 0x4b11bf00, 0xf003691b, 0x2b000301, 0x4b0ed1f9, 0xf003681b, 0xb1330340,
sahilmgandhi 18:6a4db94011d3 50 0x681b4b0b, 0x0340f043, 0x60234c09, 0x4b08bd10, 0x6814689b, 0xd00042a3, 0x1d00e7f8, 0x1f091d12,
sahilmgandhi 18:6a4db94011d3 51 0xd1d72900, 0xe7f1bf00, 0x40000100, 0x40000200, 0x4000c000, 0x00000000,
sahilmgandhi 18:6a4db94011d3 52 };
sahilmgandhi 18:6a4db94011d3 53
sahilmgandhi 18:6a4db94011d3 54 static const flash_algo_t flash_algo_config = {
sahilmgandhi 18:6a4db94011d3 55 .init = 0x00000001,
sahilmgandhi 18:6a4db94011d3 56 .uninit = 0x0000007f,
sahilmgandhi 18:6a4db94011d3 57 .erase_sector = 0x000000a3,
sahilmgandhi 18:6a4db94011d3 58 .program_page = 0x00000257,
sahilmgandhi 18:6a4db94011d3 59 .static_base = 0x00000374,
sahilmgandhi 18:6a4db94011d3 60 .algo_blob = FLASH_ALGO
sahilmgandhi 18:6a4db94011d3 61 };
sahilmgandhi 18:6a4db94011d3 62
sahilmgandhi 18:6a4db94011d3 63 static const sector_info_t sectors_info[] = {
sahilmgandhi 18:6a4db94011d3 64 {0x0, 0x800}, // (start, sector size)
sahilmgandhi 18:6a4db94011d3 65 };
sahilmgandhi 18:6a4db94011d3 66
sahilmgandhi 18:6a4db94011d3 67 static const flash_target_config_t flash_target_config = {
sahilmgandhi 18:6a4db94011d3 68 .page_size = 0x800, // 2 KB
sahilmgandhi 18:6a4db94011d3 69 .flash_start = 0x0,
sahilmgandhi 18:6a4db94011d3 70 .flash_size = 0x40000, // 256 KB
sahilmgandhi 18:6a4db94011d3 71 .sectors = sectors_info,
sahilmgandhi 18:6a4db94011d3 72 .sector_info_count = sizeof(sectors_info) / sizeof(sector_info_t)
sahilmgandhi 18:6a4db94011d3 73 };
sahilmgandhi 18:6a4db94011d3 74
sahilmgandhi 18:6a4db94011d3 75 void flash_set_target_config(flash_t *obj)
sahilmgandhi 18:6a4db94011d3 76 {
sahilmgandhi 18:6a4db94011d3 77 obj->flash_algo = &flash_algo_config;
sahilmgandhi 18:6a4db94011d3 78 obj->target_config = &flash_target_config;
sahilmgandhi 18:6a4db94011d3 79 }