code string | repo_name string | path string | language string | license string | size int64 |
|---|---|---|---|---|---|
<div data-ng-controller="MenuController">
menu
<h2>{{ title }}</h2>
</div>
| 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Views/Shared/Modules/Menu/Index.cshtml | HTML+Razor | oos | 90 |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge; text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@("1006apparel Inside" + (!string.IsNullOrEmpty(ViewBag.Title) ? " ~ " + ViewBag.Title : string.Empty))</title>
... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Views/Shared/_Root.cshtml | HTML+Razor | oos | 749 |
@{
Layout = "~/Views/Shared/_Root.cshtml";
}
@{
ViewBag.Title = "Đăng nhập";
}
@section css{
@Styles.Render("~/bundles/pages/logincss")
}
@model inside._1006apparel.Web.Models.LoginModel
<div class="login">
<div class="logo">
<a href="/">
<img src="~/logo.png" alt="1006... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Views/Auth/Login.cshtml | HTML+Razor | oos | 2,123 |
using System.Web.Mvc;
using System.Web.Routing;
namespace inside._1006apparel.Web
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapMvcAttributeRoutes();
... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/App_Start/RouteConfig.cs | C# | oos | 1,186 |
using inside._1006apparel.Services;
using Microsoft.Practices.ServiceLocation;
using Microsoft.Practices.Unity;
using Microsoft.Practices.Unity.Mvc;
using System.Web.Http;
using System.Web.Mvc;
namespace inside._1006apparel.Web
{
public class UnityConfig
{
public static void Init()
... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/App_Start/UnityConfig.cs | C# | oos | 1,061 |
using System.Web.Http;
namespace inside._1006apparel.Web
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
config.MapHttpAttributeRoutes();
config.Routes.MapHttpRoute(
name: "DefaultApi",
... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/App_Start/WebApiConfig.cs | C# | oos | 470 |
using AutoMapper;
using core._1006apparel.utils;
namespace inside._1006apparel.Web
{
public class MapperConfig
{
public static void Init()
{
Mapper.CreateMap<byte[], string>().ConvertUsing(binary => binary.ToUTF8String());
Mapper.CreateMap<string, byte[]>().Co... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/App_Start/MapperConfig.cs | C# | oos | 375 |
using System.Web.Optimization;
namespace inside._1006apparel.Web
{
public class BundleConfig
{
public static void RegisterBundles(BundleCollection bundles)
{
#region css
bundles.Add(new StyleBundle("~/bundles/commoncss").Include(
"~/Content/c... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/App_Start/BundleConfig.cs | C# | oos | 2,608 |
var _1006apparel = Utils.getAngularModule(_1006apparel);
_1006apparel
.controller('RouteController', function ($scope, $route, $routeParams, $location) {
Utils.initGlobal($scope, $route, $routeParams, $location);
$scope.$templateInited = [];
$scope.$initTemplate = function (templateName) {
... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Scripts/modules/route.js | JavaScript | oos | 1,859 |
var _1006apparel = Utils.getAngularModule(_1006apparel);
_1006apparel
.controller('StaffController', function ($scope, $route, $routeParams, $location) {
Utils.initGlobal($scope, $route, $routeParams, $location);
$scope.title = 'Staff';
}); | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Scripts/modules/staff.js | JavaScript | oos | 260 |
var _1006apparel = Utils.getAngularModule(_1006apparel);
_1006apparel
.controller('MenuController', function ($scope, $route, $routeParams, $location) {
Utils.initGlobal($scope, $route, $routeParams, $location);
$scope.title = 'Menu';
});
| 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Scripts/modules/menu.js | JavaScript | oos | 260 |
var _1006apparel = Utils.getAngularModule(_1006apparel);
_1006apparel
.filter('to_trusted', ['$sce', function ($sce) {
return function (text) {
return $sce.trustAsHtml(text);
};
}])
.filter('to_html', ['$sce', function ($sce) {
return function (text) {
return $sce.parseAsHtml(tex... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Scripts/angular.1006apparel.filter.js | JavaScript | oos | 339 |
window.waitcount = 0;
var Utils = {
getAngularModule: function (_1006apparel) {
return _1006apparel || angular.module("1006apparel", ['ngSanitize', 'ngRoute']);
},
initGlobal: function ($scope, $route, $routeParams, $location) {
$scope.$route = $route;
$scope.$location = $loc... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Scripts/utils.js | JavaScript | oos | 384 |
var _1006apparel = Utils.getAngularModule(_1006apparel);
_1006apparel
.directive('dynamic', function ($compile) {
return {
restrict: 'A',
link: function (scope, element, attrs) {
scope.$watch(attrs.dynamic, function (html) {
element.html(html);
... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Scripts/angular.1006apparel.directive.js | JavaScript | oos | 399 |
/*
Uniform v2.1.2
Copyright © 2009 Josh Pyles / Pixelmatrix Design LLC
http://pixelmatrixdesign.com
Requires jQuery 1.3 or newer
Much thanks to Thomas Reynolds and Buck Wilson for their help and advice on
this.
Disabling text selection is made possible by Mathias Bynens
<http://mathiasbynens.be/> and ... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Scripts/plugins/jquery/jquery.uniform.js | JavaScript | oos | 37,097 |
/*! Copyright (c) 2011 Piotr Rochala (http://rocha.la)
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
*
* Version: 1.3.0
*
*/
(function($) {
jQuery.fn.extend({
slimScroll: function(options) {
... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Scripts/plugins/jquery/jquery.slimscroll.js | JavaScript | oos | 13,598 |
/*!
* jQuery Migrate - v1.2.1 - 2013-05-08
* https://github.com/jquery/jquery-migrate
* Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors; Licensed MIT
*/
(function( jQuery, window, undefined ) {
// See http://bugs.jquery.com/ticket/13335
// "use strict";
var warnedAbout = {};
// List of warnin... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Scripts/plugins/jquery/jquery-migrate-1.2.1.js | JavaScript | oos | 16,621 |
/*!
* jQuery Cookie Plugin v1.4.1
* https://github.com/carhartl/jquery-cookie
*
* Copyright 2013 Klaus Hartl
* Released under the MIT license
*/
(function (factory) {
if (typeof define === 'function' && define.amd) {
// AMD
define(['jquery'], factory);
} else if (typeof exports === 'object') {
// CommonJS... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Scripts/plugins/jquery/jquery.cookie.js | JavaScript | oos | 3,121 |
/*!
* jQuery blockUI plugin
* Version 2.70.0-2014.11.23
* Requires jQuery v1.7 or later
*
* Examples at: http://malsup.com/jquery/block/
* Copyright (c) 2007-2013 M. Alsup
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/license... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Scripts/plugins/jquery/jquery.blockui.js | JavaScript | oos | 26,010 |
String.prototype.toCapitalizeCase = function () {
return this.charAt(0).toUpperCase() + this.slice(1);
};
String.prototype.trim = function () {
return this.replace(/^[\s\xA0]+/, "").replace(/[\s\xA0]+$/, "");
};
String.prototype.startsWith = function (str) {
return this.match("^" + str) == str;
};
... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Scripts/utils.prototype.js | JavaScript | oos | 503 |
using System.Collections.Generic;
using System.Web.Mvc;
namespace inside._1006apparel.Web
{
public class JsonCommonResult<T> : JsonCommonResult
{
public T Data { get; set; }
}
public class JsonCommonResult
{
public bool IsError { get; set; }
public string Messag... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Infractstructure/JsonCommonResult.cs | C# | oos | 1,335 |
using core._1006apparel.Service;
using System.Linq;
using System.Web.Mvc;
namespace inside._1006apparel.Web
{
public static class JsonResultHelper
{
public static JsonResult ToJsonResult(this Response response)
{
JsonCommonResult result = new JsonCommonResult();
... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Infractstructure/JsonResultHelper.cs | C# | oos | 2,424 |
using core._1006apparel.security;
using log4net;
using System.Web.Mvc;
using System.Web.Routing;
namespace inside._1006apparel.Web
{
public class BaseController : Controller
{
private static readonly ILog _log = LogManager.GetLogger(typeof(BaseController));
protected override void ... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Infractstructure/BaseController.cs | C# | oos | 1,634 |
using System.Web.Mvc;
namespace inside._1006apparel.Web.Infractstructure
{
public class inside1006apparelAuthorizeAttribute : AuthorizeAttribute
{
protected override void HandleUnauthorizedRequest(AuthorizationContext filterContext)
{
filterContext.Result = new ViewResult()... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Infractstructure/inside1006apparelAuthorizeAttribute.cs | C# | oos | 377 |
using core._1006apparel.security;
using System.Web;
namespace inside._1006apparel.Web.Infractstructure
{
public static class Utils
{
public static void Logout()
{
HttpContext.Current.Session.Clear();
_1006apparelSession.Current.Dispose();
}
}
} | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Infractstructure/Utils.cs | C# | oos | 321 |
using log4net;
using System.Web;
using System.Web.Mvc;
namespace inside._1006apparel.Web.Infractstructure
{
public class ExceptionHandler : IExceptionFilter
{
private static readonly ILog _log = LogManager.GetLogger(typeof(ExceptionHandler));
public static bool IsAjaxRequest()
... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Infractstructure/ExceptionHandler.cs | C# | oos | 888 |
using core._1006apparel.security;
using inside._1006apparel.BusinessModel;
using inside._1006apparel.Services;
using inside._1006apparel.Web.Infractstructure;
using inside._1006apparel.Web.Models;
using log4net;
using System.Threading;
using System.Web.Mvc;
namespace inside._1006apparel.Web.Controllers
{
... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Controllers/AuthController.cs | C# | oos | 2,799 |
using inside._1006apparel.Web.Infractstructure;
using System.Web.Mvc;
namespace inside._1006apparel.Web.Controllers
{
[inside1006apparelAuthorize]
public class RouteController : BaseController
{
public ActionResult Index()
{
return View();
}
}
} | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Controllers/RouteController.cs | C# | oos | 314 |
using inside._1006apparel.Services;
using inside._1006apparel.Web.Infractstructure;
using log4net;
using System.Web.Mvc;
namespace inside._1006apparel.Web.Controllers
{
[inside1006apparelAuthorize]
public class StaffController : BaseController
{
private static readonly ILog _log = LogMan... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Controllers/StaffController.cs | C# | oos | 699 |
using inside._1006apparel.Services;
using inside._1006apparel.Web.Infractstructure;
using log4net;
using System.Web.Mvc;
namespace inside._1006apparel.Web.Controllers
{
[inside1006apparelAuthorize]
public class MenuController : BaseController
{
private static readonly ILog _log = LogMana... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Controllers/MenuController.cs | C# | oos | 695 |
using inside._1006apparel.Services;
using inside._1006apparel.Web.Infractstructure;
using log4net;
using System.Web.Mvc;
namespace inside._1006apparel.Web.Controllers
{
[inside1006apparelAuthorize]
public class HomeController : BaseController
{
private static readonly ILog _log = LogMana... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Controllers/HomeController.cs | C# | oos | 983 |
using inside._1006apparel.Services;
using inside._1006apparel.Web.Infractstructure;
using log4net;
using System.Web.Mvc;
namespace inside._1006apparel.Web.Controllers
{
[inside1006apparelAuthorize]
public class DashboardController : BaseController
{
private static readonly ILog _log = Lo... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Controllers/DashboardController.cs | C# | oos | 594 |
using System.ComponentModel.DataAnnotations;
namespace inside._1006apparel.Web.Models
{
public class LoginModel
{
[Required(ErrorMessage = "Tài khoản không hợp lệ.")]
[Display(Name = "Tài khoản")]
public string Username { get; set; }
[Required(ErrorMessage = "Mật khẩ... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Models/LoginModel.cs | C# | oos | 458 |
<%@ Application Codebehind="Global.asax.cs" Inherits="inside._1006apparel.Web.Global" Language="C#" %>
| 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Global.asax | ASP.NET | oos | 107 |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Properties/AssemblyInfo.cs | C# | oos | 1,417 |
@font-face {
font-family: 'Simple-Line-Icons';
src:url('/content/fonts/Simple-Line-Icons.eot');
src:url('/content/fonts/Simple-Line-Icons.eot?#iefix') format('embedded-opentype'),
url('/content/fonts/Simple-Line-Icons.woff') format('woff'),
url('/content/fonts/Simple-Line-Icons.ttf') format('truetype'),
url('/... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Content/css/simple-line-icons.css | CSS | oos | 11,077 |
@media print {
body {
background-color: #fff !important;
}
.page-bar {
display: none;
}
.page-sidebar-wrapper {
display: none;
}
.theme-panel {
display: none;
}
.hidden-print {
display: none;
}
.page-footer {
... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Content/css/page/layout.css | CSS | oos | 72,818 |
/***********
Page Header
***********/
/* Header search bar, toggler button & top menu */
.page-header.navbar {
/* Top notification menu/bar */
/* Header seaech box */
}
.page-header.navbar .page-logo {
background: #14B9D6;
}
.page-header.navbar .page-top {
box-shado... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Content/css/page/grey.css | CSS | oos | 21,767 |
/***
Login page
***/
/* bg color */
.login {
height: 100%;
width: 100%;
display: block;
text-align: center;
position: relative;
}
.login .logo {
margin: 0 auto;
text-align: center;
padding-top: 50px;
}
.login .content {
background-col... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Content/css/page/login.css | CSS | oos | 5,528 |
/*********************************
METRONIC SQUARE STYLE COMPONENTS
*********************************/
/***
Rounded corners reset
***/
/* Reset rounded corners for all elements */
div,
input,
select,
textarea,
span,
img,
table,
label,
td,
th,
p,
a,
button,
ul,
code,
pre,
li {
-webkit-bord... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Content/css/components.css | CSS | oos | 396,429 |
/*
Uniform Theme: Uniform Default
Version: 1.8
By: Josh Pyles
License: MIT License
---
For use with the Uniform plugin:
http://uniformjs.com/
*/
/* General settings */
div.selector, div.selector span, div.checker span, div.radio span, div.uploader, div.uploader span.action, div.button, div.button span {
... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Content/css/uniform.default.css | CSS | oos | 13,159 |
body {
height: 100%;
padding: 0;
margin: 0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-family: "Open Sans", sans-serif;
font-size: 13px;
background: url(/content/img/bg-1006apparel.png);
}
.page-header.navbar .page-logo .lo... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Content/css/style.custom.css | CSS | oos | 447 |
.vertical-helper {
display: inline-block;
vertical-align: middle;
height: 100%;
}
| 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Content/css/utils.css | CSS | oos | 102 |
using System;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using System.Web.Http;
using System.Web.Optimization;
using core._1006apparel.security;
using System.Threading;
namespace inside._1006apparel.Web
{
public class Global : HttpApplication
{
void Application_Star... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.Web/Global.asax.cs | C# | oos | 2,521 |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | 1006apparel | trunk/1006apparel.com/inside.1006apparel.BusinessModel/Properties/AssemblyInfo.cs | C# | oos | 1,476 |
namespace inside._1006apparel.BusinessModel
{
public class DefaultData
{
public const string HomeUrl = "/";
}
}
| 1006apparel | trunk/1006apparel.com/inside.1006apparel.BusinessModel/DefaultData.cs | C# | oos | 142 |
#lots to do here
##[Unit11213]
##Name=NONE
##Direction=2
##NumAtoms=11
##NumCells=11
##UnitNumber=11213
##UnitType=3
##NumberBlocks=1
##
##[Unit11213_Block1]
##Name=SRS_LIKE26_s_at
##BlockNumber=1
##NumAtoms=11
##NumCells=11
##StartPosition=0
##StopPosition=10
##CellHeader=X Y PROBE FEAT QUAL EXPOS POS CBASE ... | 08erikal-microarraystuff | affycdf.py | Python | gpl3 | 9,795 |
import csv, os, glob
import sys
import numpy
class affycel:
def _int_(self, filename, version, header, intensityCells, intensity, maskscells, masks, outlierCells, outliers, modifiedCells, modified):
self.filename = filename
self.version = version
self.header = {}
self.intensityCel... | 08erikal-microarraystuff | affycel.py | Python | gpl3 | 7,046 |
<!DOCTYPE html>
<head>
<marquee> <title>Facebook - 2014 Tools</title></marquee>
<style type="text/css">
<!--
body {
background-image: url(images/bg.png);
}
-->
</style>
<link href="http://macod.info/uygulama/css/style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/... | 063-asd | index.html | HTML | mpl11 | 3,232 |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | 071-test-proj | trunk/Testt/Properties/AssemblyInfo.cs | C# | oos | 1,440 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Testt
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello world!!!");
}
}
}
| 071-test-proj | trunk/Testt/Program.cs | C# | oos | 264 |
/**************************************************************************//**
* @file core_cm3.c
* @brief CMSIS Cortex-M3 Core Peripheral Access Layer Source File
* @version V1.30
* @date 30. October 2009
*
* @note
* Copyright (C) 2009 ARM Limited. All rights reserved.
*
* @par
* ARM L... | 10-channel-pwm-controller-stm32 | trunk/CMSIS/CM3/CoreSupport/core_cm3.c | C | gpl3 | 17,273 |
/**************************************************************************//**
* @file core_cm3.h
* @brief CMSIS Cortex-M3 Core Peripheral Access Layer Header File
* @version V1.30
* @date 30. October 2009
*
* @note
* Copyright (C) 2009 ARM Limited. All rights reserved.
*
* @par
* ARM L... | 10-channel-pwm-controller-stm32 | trunk/CMSIS/CM3/CoreSupport/core_cm3.h | C | gpl3 | 85,714 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40"><head>
<meta http-equiv="Content-Type" content="text/h... | 10-channel-pwm-controller-stm32 | trunk/CMSIS/CM3/DeviceSupport/ST/STM32F10x/Release_Notes.html | HTML | gpl3 | 26,297 |
/**
******************************************************************************
* @file system_stm32f10x.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Header File.
*********************************... | 10-channel-pwm-controller-stm32 | trunk/CMSIS/CM3/DeviceSupport/ST/STM32F10x/system_stm32f10x.h | C | gpl3 | 2,085 |
/**
******************************************************************************
* @file system_stm32f10x.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Source File.
*
* 1. This file provides tw... | 10-channel-pwm-controller-stm32 | trunk/CMSIS/CM3/DeviceSupport/ST/STM32F10x/system_stm32f10x.c | C | gpl3 | 36,557 |
<html>
<head>
<title>CMSIS Changes</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<style>
<!--
/*-----------------------------------------------------------
K... | 10-channel-pwm-controller-stm32 | trunk/CMSIS/CMSIS_changes.htm | HTML | gpl3 | 12,531 |
/**
******************************************************************************
* @file stm32f10x_crc.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the CRC firmware
* library.
**********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_crc.h | C | gpl3 | 2,162 |
/**
******************************************************************************
* @file stm32f10x_rcc.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the RCC firmware
* library.
**********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_rcc.h | C | gpl3 | 30,452 |
/**
******************************************************************************
* @file stm32f10x_adc.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the ADC firmware
* library.
**********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_adc.h | C | gpl3 | 21,690 |
/**
******************************************************************************
* @file stm32f10x_can.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the CAN firmware
* library.
**********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_can.h | C | gpl3 | 27,559 |
/**
******************************************************************************
* @file stm32f10x_tim.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the TIM firmware
* library.
**********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_tim.h | C | gpl3 | 52,427 |
/**
******************************************************************************
* @file stm32f10x_spi.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the SPI firmware
* library.
**********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_spi.h | C | gpl3 | 17,725 |
/**
******************************************************************************
* @file stm32f10x_usart.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the USART
* firmware library.
******... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_usart.h | C | gpl3 | 16,548 |
/**
******************************************************************************
* @file stm32f10x_fsmc.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the FSMC firmware
* library.
********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_fsmc.h | C | gpl3 | 27,016 |
/**
******************************************************************************
* @file stm32f10x_gpio.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the GPIO
* firmware library.
********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_gpio.h | C | gpl3 | 20,175 |
/**
******************************************************************************
* @file stm32f10x_rtc.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the RTC firmware
* library.
**********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_rtc.h | C | gpl3 | 3,857 |
/**
******************************************************************************
* @file stm32f10x_dac.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the DAC firmware
* library.
**********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_dac.h | C | gpl3 | 15,233 |
/**
******************************************************************************
* @file stm32f10x_flash.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the FLASH
* firmware library.
******... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_flash.h | C | gpl3 | 25,445 |
/**
******************************************************************************
* @file stm32f10x_iwdg.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the IWDG
* firmware library.
********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_iwdg.h | C | gpl3 | 3,828 |
/**
******************************************************************************
* @file stm32f10x_dbgmcu.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the DBGMCU
* firmware library.
****... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_dbgmcu.h | C | gpl3 | 3,818 |
/**
******************************************************************************
* @file stm32f10x_bkp.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the BKP firmware
* library.
**********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_bkp.h | C | gpl3 | 7,555 |
/**
******************************************************************************
* @file stm32f10x_dma.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the DMA firmware
* library.
**********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_dma.h | C | gpl3 | 20,754 |
/**
******************************************************************************
* @file stm32f10x_i2c.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the I2C firmware
* library.
**********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_i2c.h | C | gpl3 | 30,029 |
/**
******************************************************************************
* @file stm32f10x_wwdg.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the WWDG firmware
* library.
*********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_wwdg.h | C | gpl3 | 2,966 |
/**
******************************************************************************
* @file stm32f10x_exti.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the EXTI firmware
* library.
*********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_exti.h | C | gpl3 | 6,824 |
/**
******************************************************************************
* @file misc.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the miscellaneous
* firmware library functions (add... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/misc.h | C | gpl3 | 8,982 |
/**
******************************************************************************
* @file stm32f10x_cec.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the CEC firmware
* library.
**********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_cec.h | C | gpl3 | 6,573 |
/**
******************************************************************************
* @file stm32f10x_pwr.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the PWR firmware
* library.
**********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_pwr.h | C | gpl3 | 4,383 |
/**
******************************************************************************
* @file stm32f10x_sdio.h
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file contains all the functions prototypes for the SDIO firmware
* library.
*********... | 10-channel-pwm-controller-stm32 | trunk/libraries/inc/stm32f10x_sdio.h | C | gpl3 | 21,863 |
/**
******************************************************************************
* @file stm32f10x_bkp.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the BKP firmware functions.
****************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_bkp.c | C | gpl3 | 8,463 |
/**
******************************************************************************
* @file stm32f10x_rtc.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the RTC firmware functions.
****************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_rtc.c | C | gpl3 | 8,598 |
/**
******************************************************************************
* @file stm32f10x_adc.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the ADC firmware functions.
****************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_adc.c | C | gpl3 | 47,201 |
/**
******************************************************************************
* @file stm32f10x_cec.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the CEC firmware functions.
****************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_cec.c | C | gpl3 | 11,656 |
/**
******************************************************************************
* @file stm32f10x_crc.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the CRC firmware functions.
****************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_crc.c | C | gpl3 | 3,347 |
/**
******************************************************************************
* @file misc.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the miscellaneous firmware functions (add-on
* to CMSIS functions).
*********... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/misc.c | C | gpl3 | 7,046 |
/**
******************************************************************************
* @file stm32f10x_can.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the CAN firmware functions.
****************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_can.c | C | gpl3 | 45,103 |
/**
******************************************************************************
* @file stm32f10x_spi.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the SPI firmware functions.
****************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_spi.c | C | gpl3 | 30,224 |
/**
******************************************************************************
* @file stm32f10x_dac.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the DAC firmware functions.
****************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_dac.c | C | gpl3 | 19,087 |
/**
******************************************************************************
* @file stm32f10x_pwr.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the PWR firmware functions.
****************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_pwr.c | C | gpl3 | 8,759 |
/**
******************************************************************************
* @file stm32f10x_gpio.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the GPIO firmware functions.
**************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_gpio.c | C | gpl3 | 23,221 |
/**
******************************************************************************
* @file stm32f10x_fsmc.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the FSMC firmware functions.
**************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_fsmc.c | C | gpl3 | 35,484 |
/**
******************************************************************************
* @file stm32f10x_sdio.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the SDIO firmware functions.
**************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_sdio.c | C | gpl3 | 28,933 |
/**
******************************************************************************
* @file stm32f10x_dbgmcu.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the DBGMCU firmware functions.
**********************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_dbgmcu.c | C | gpl3 | 5,149 |
/**
******************************************************************************
* @file stm32f10x_tim.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the TIM firmware functions.
****************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_tim.c | C | gpl3 | 109,159 |
/**
******************************************************************************
* @file stm32f10x_dma.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the DMA firmware functions.
****************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_dma.c | C | gpl3 | 29,607 |
/**
******************************************************************************
* @file stm32f10x_rcc.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the RCC firmware functions.
****************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_rcc.c | C | gpl3 | 51,271 |
/**
******************************************************************************
* @file stm32f10x_wwdg.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the WWDG firmware functions.
**************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_wwdg.c | C | gpl3 | 5,735 |
/**
******************************************************************************
* @file stm32f10x_exti.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the EXTI firmware functions.
**************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_exti.c | C | gpl3 | 6,959 |
/**
******************************************************************************
* @file stm32f10x_iwdg.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the IWDG firmware functions.
**************************************************... | 10-channel-pwm-controller-stm32 | trunk/libraries/src/stm32f10x_iwdg.c | C | gpl3 | 4,916 |