macros to handle NOR device enable/disable and read/write operations  
More...
macros to handle NOR device enable/disable and read/write operations 
◆ __FMC_NORSRAM_DISABLE
      
        
          | #define __FMC_NORSRAM_DISABLE | 
          ( | 
            | 
          __INSTANCE__,  | 
        
        
           | 
           | 
            | 
          __BANK__  | 
        
        
           | 
          ) | 
           |    ((__INSTANCE__)->BTCR[(__BANK__)] &= ~FMC_BCR1_MBKEN) | 
        
      
 
Disable the NORSRAM device access. 
- Parameters
 - 
  
    | <strong>INSTANCE</strong> | FMC_NORSRAM Instance  | 
    | <strong>BANK</strong> | FMC_NORSRAM Bank  
  | 
  
   
- Return values
 - 
  
  
 
Definition at line 1084 of file stm32f7xx_ll_fmc.h.
 
 
◆ __FMC_NORSRAM_ENABLE
      
        
          | #define __FMC_NORSRAM_ENABLE | 
          ( | 
            | 
          __INSTANCE__,  | 
        
        
           | 
           | 
            | 
          __BANK__  | 
        
        
           | 
          ) | 
           |    ((__INSTANCE__)->BTCR[(__BANK__)] |= FMC_BCR1_MBKEN) | 
        
      
 
Enable the NORSRAM device access. 
- Parameters
 - 
  
    | <strong>INSTANCE</strong> | FMC_NORSRAM Instance  | 
    | <strong>BANK</strong> | FMC_NORSRAM Bank  
  | 
  
   
- Return values
 - 
  
  
 
Definition at line 1076 of file stm32f7xx_ll_fmc.h.