All Projects → atmelcorp → Atmel Software Package

atmelcorp / Atmel Software Package

Licence: other
Atmel Software Package

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Atmel Software Package

Baremetal Arm
An ebook about bare-metal programming for ARM
Stars: ✭ 222 (+174.07%)
Mutual labels:  bare-metal, arm
stm32f4-bare-metal
Bare metal STM32F4 examples for various modules
Stars: ✭ 79 (-2.47%)
Mutual labels:  arm, bare-metal
Gnu Eprog
Embedded Programming with the GNU Toolchain
Stars: ✭ 230 (+183.95%)
Mutual labels:  bare-metal, arm
Aros
Main AROS repository for active development. Contains the main Operating System components and Build System.
Stars: ✭ 146 (+80.25%)
Mutual labels:  bare-metal, arm
drone-cortexm
ARM® Cortex®-M platform crate for Drone, an Embedded Operating System.
Stars: ✭ 31 (-61.73%)
Mutual labels:  arm, bare-metal
elfloader
ARMv7M ELF loader
Stars: ✭ 71 (-12.35%)
Mutual labels:  arm, bare-metal
drone-stm32-map
STM32 peripheral mappings for Drone, an Embedded Operating System.
Stars: ✭ 16 (-80.25%)
Mutual labels:  arm, bare-metal
mdepx
MDEPX — A BSD-style RTOS
Stars: ✭ 17 (-79.01%)
Mutual labels:  arm, bare-metal
metal.test
Deprecated, superseded by https://github.com/metal-ci/test
Stars: ✭ 41 (-49.38%)
Mutual labels:  arm, bare-metal
CML
Fast, safe and easy to use Cortex-M HAL Library, written in C++ 17
Stars: ✭ 17 (-79.01%)
Mutual labels:  arm, bare-metal
Cortex M Rtic
Real-Time Interrupt-driven Concurrency (RTIC) framework for ARM Cortex-M microcontrollers
Stars: ✭ 623 (+669.14%)
Mutual labels:  bare-metal, arm
Cortex M Quickstart
Template to develop bare metal applications for Cortex-M microcontrollers
Stars: ✭ 372 (+359.26%)
Mutual labels:  bare-metal, arm
Ferret
Ferret is a free software lisp implementation for real time embedded control systems.
Stars: ✭ 878 (+983.95%)
Mutual labels:  bare-metal, arm
Fancyss
fancyss is a project providing tools to across the GFW on asuswrt/merlin based router.
Stars: ✭ 9,112 (+11149.38%)
Mutual labels:  arm
Amrtomp3
amr转mp3模块 amr to mp3 module
Stars: ✭ 68 (-16.05%)
Mutual labels:  arm
Redorescue
Redo Rescue: Backup and Recovery Made Easy
Stars: ✭ 58 (-28.4%)
Mutual labels:  bare-metal
Sos
Home-made almost operating system
Stars: ✭ 57 (-29.63%)
Mutual labels:  arm
Kvm Operator
Handles Kubernetes clusters running on a Kubernetes cluster with workers and masters in KVMs on bare metal
Stars: ✭ 76 (-6.17%)
Mutual labels:  bare-metal
Mabalgs
👤 Multi-Armed Bandit Algorithms Library (MAB) 👮
Stars: ✭ 67 (-17.28%)
Mutual labels:  arm
Docker Multi Arch Example
TL;DR reference for building multi-arch Docker images
Stars: ✭ 56 (-30.86%)
Mutual labels:  arm

Microchip Software Package

Overview

This softpack comes as an early delivery and all presented APIs are subject to change.

Each software module is provided with full source code, example of usage, and ready-to-use projects.

This softpack is hosted on GitHub.

Supported Platforms

Windows and Linux with the gnu GCC ARM Embedded toolchain

It is downloadable at this address: launchpad.net/gcc-arm-embedded (Mac OS X should also work but as not been tested yet).

As it is announced all new binary and source packages will not be released on Launchpad, toolchains can also be downloaded at these address: developer.arm.com/open-source/gnu-toolchain/gnu-rm/downloads and developer.arm.com/open-source/gnu-toolchain/gnu-a/downloads

Suggested version of toolchain: gcc-arm-none-eabi-8-2018-q4-major

Here a few tips that may prove useful in resolving compatibility issues met with other toolchain versions:

Dependencies:

  • GNU make (from MinGW, Cygwin or GnuWin32 for Windows architectures)
  • bash (from MinGW, Cygwin for Windows architectures)
  • recommended on Windows architectures: winpty (from MSYS2's package manager)

Windows with IAR Embedded Workbench

Dependencies:

  • IAR Embedded Workbench (Tested on version 7.80)
  • bash (from MinGW, Cygwin or GnuWin32) for IAR project generation
  • GNU make (from MinGW, Cygwin or GnuWin32) for IAR project generation
  • mktemp (from MinGW, Cygwin or GnuWin32) for IAR project generation

Contents

Directory Architecture

  • target/xxx All chip and board specific source files for xxx devices

  • target/xxx/toolchain/ Linker and debugger scripts for xxx devices

  • scripts/ generators and build script templates (Makefiles)

  • arch/ CPU Core driver source files

  • drivers/ Driver source files

  • examples/ All examples

  • samba_applets/ Source code for SAM-BA 3.x applets

  • flash_loader/ Source code for IAR flash loader

Examples

The examples are listed in softpack.md.

Usage (GCC ARM Embedded)

Environment Variable

TARGET: Name of the target (sama5d2-xplained for SAMA5D2 XPLAINED ULTRA boards).

VARIANT: Build variant, for example "sram","ddram" or "qspi".

DEBUG: Build with debug flags (default).

TRACE_LEVEL: Log level, 5 correspond to full, 0 to none (default to 5)

RELEASE: Build for release, otherwise build for debug.

V=1: Verbose build

All these variables are optional except for TARGET that must be provided or set at each make invocation.

Build

Run:

make TARGET=target

Run and Debug (with GDB)

To run examples with gdb, JLinkGDBServer must be started. It can be downloaded for each platform at www.segger.com

A make target is provided to launch the test with the correct gdb command arguments, run:

make TARGET=target debug

Usage (IAR)

The Win version of this softpack release comes with pregenerated IAR projects compatible with IAR Systems Embedded Workbench for ARM version 7.80.

The C-SPY device description files and device selections files are not included and must be installed manually.

IAR Project generation

An IAR project can be generated with GNU make, run in the example directory:

make TARGET=target iar

All needed IAR project files will be put in the example directory, including a default workspace one. Each IAR project is configured to JLINK as default debugger driver, as for other setting, you can set up in IAR IDE to suit your connection such as cmsis-dap driver. IAR flash loader is an agent that is downloaded to the target, more flash loaders are provided in this software package, each build variant, for example "sram","ddram", "flash" or "qspi", have it's dedicated flash loader.

Notice: GNU make may fail on Windows platforms if the Makefile contains UNIX line endings. You can use unix2dos on all Makefile files in scripts/ directory to fix this issue.

Please visit README for FreeRTOS to use examples/freertos_*.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].